mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-16 13:57:02 +05:30
sync-backend: initialize barebones module
This is simply an import of the project generated by start.ktor.io cleaned of its ungodly wildcard import fetish and better integrated into our existing build system.
This commit is contained in:
parent
b0bae12e6b
commit
5db4a1ee8d
12 changed files with 338 additions and 2 deletions
12
sync-backend/src/main/resources/logback.xml
Normal file
12
sync-backend/src/main/resources/logback.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<configuration>
|
||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<encoder>
|
||||
<pattern>%d{YYYY-MM-dd HH:mm:ss.SSS} [%thread] %X{call-id} %-5level %logger{36} - %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
<root level="trace">
|
||||
<appender-ref ref="STDOUT"/>
|
||||
</root>
|
||||
<logger name="org.eclipse.jetty" level="INFO"/>
|
||||
<logger name="io.netty" level="INFO"/>
|
||||
</configuration>
|
Loading…
Add table
Add a link
Reference in a new issue