BAEL-1970 minor log message correction

This commit is contained in:
mprevisic 2019-04-06 20:45:08 +02:00
parent 5957f65495
commit 2674f7abff
1 changed files with 4 additions and 4 deletions

View File

@ -10,10 +10,10 @@ public class OtherComponent {
private static final Logger LOG = LoggerFactory.getLogger(OtherComponent.class);
public void processData() {
LOG.trace("This is a TRACE log from OtherComponent");
LOG.debug("This is a DEBUG log from OtherComponent");
LOG.info("This is an INFO log from OtherComponent");
LOG.error("This is an ERROR log from OtherComponent");
LOG.trace("This is a TRACE log from another package");
LOG.debug("This is a DEBUG log from another package");
LOG.info("This is an INFO log from another package");
LOG.error("This is an ERROR log from another package");
}
}