Skip to content

Instantly share code, notes, and snippets.

@anmol2709
Last active December 29, 2019 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anmol2709/cad3b6cc4575d8e1a74dfd9563cfe976 to your computer and use it in GitHub Desktop.
Save anmol2709/cad3b6cc4575d8e1a74dfd9563cfe976 to your computer and use it in GitHub Desktop.
<configuration>
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>src/main/resources/testFile.log</file>
<append>true</append>
<encoder>
<pattern>%d{HH:mm:ss.SSS} %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="FILE" />
</root>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment