Skip to content

Commit

Permalink
fix: debugging gradle docs ci tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
cprice404 committed Jul 10, 2024
1 parent 11db5bd commit a37f3d8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,3 @@ examples/lib/.classpath
examples/lib/.project
examples/lib/bin
.vscode/
*logback.xml
19 changes: 19 additions & 0 deletions examples/storage/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration>

poo

<configuration>
<import class="ch.qos.logback.classic.encoder.PatternLayoutEncoder"/>
<import class="ch.qos.logback.core.ConsoleAppender"/>

<appender name="STDOUT" class="ConsoleAppender">
<encoder class="PatternLayoutEncoder">
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%kvp- %msg%n</pattern>
</encoder>
</appender>

<root level="info">
<appender-ref ref="STDOUT"/>
</root>
</configuration>

0 comments on commit a37f3d8

Please sign in to comment.