Skip to content

Commit

Permalink
Improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
wederbn committed Dec 8, 2023
1 parent c866453 commit e00394c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public Response updateNodeTemplateInstanceState(@PathParam("id") final Long id,
@Produces( {MediaType.APPLICATION_XML})
@ApiOperation(hidden = true, value = "")
public Response getNodeTemplateInstanceProperties(@PathParam("id") final Long id) {
logger.debug("Invoking getNodeTemplateInstanceProperties");
logger.debug("Invoking getNodeTemplateInstanceProperties for ID: {}", id);
final Document properties = this.nodeTemplateInstanceService.getNodeTemplateInstancePropertiesDocument(id);

if (properties == null) {
Expand Down
2 changes: 1 addition & 1 deletion org.opentosca.container.war/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</appender>-->

<!-- code under our direct control -->
<logger name="org.opentosca" level="INFO"/>
<logger name="org.opentosca" level="DEBUG"/>
<logger name="org.opentosca.bus.management" level="INFO"/>

<!-- Reducing logging noise -->
Expand Down

0 comments on commit e00394c

Please sign in to comment.