It is inefficient to have sequences of logger invocations at the same level: ```java logger.info("foo"); logger.info("bar"); ``` These would be better combined into a single invocation
It is inefficient to have sequences of logger invocations at the same level:
These would be better combined into a single invocation