I want to add a blank line after my LOG
statement in order to make my logs more separated and readable.
How do I do this?
Current statement:
LOGGER.info("Person's name is {} .", person.getName());
Note that I don't want to do this after every statement, just for certain statements.