Interface LogDecorator

    • Method Detail

      • printSeparator

        default void printSeparator​()
        Prints a separator line in case the underlying Logger supports the such. A separator line may be printed just as of beautifying purposes and does not belong to the actual log's data. Therefore this method may just do nothing, depending on the implementing class.
      • printHead

        default void printHead​()
        Prints the logger's head in case it hasn't been printed before or printTail() has been called. Printing the head might result in printing out the additional logger's information such as the column names.
      • printTail

        default void printTail​()
        Prints the logger's tail in case it hasn't been printed before or printHead() has been called. Printing the tail might result in printing out the additional logger's information or visually finishing the current log sequence.