Compare commits

..

No commits in common. "ea4edcdceee7a8af6cd3b0d81787967cb64c969b" and "311d1fbd3b3b79d7135374532335e187176ecfce" have entirely different histories.

2 changed files with 0 additions and 23 deletions

View File

@ -9,10 +9,6 @@ plugins {
kotlin("plugin.serialization") version "1.9.23" // Aggiungi il plugin di Serialization kotlin("plugin.serialization") version "1.9.23" // Aggiungi il plugin di Serialization
} }
application {
mainClass.set("eu.maiora.ApplicationKt")
}
group = "org.maiora" group = "org.maiora"
version = "1.0-SNAPSHOT" version = "1.0-SNAPSHOT"

View File

@ -1,19 +0,0 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{YYYY-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>./logFile.log</file>
<append>true</append>
<encoder>
<pattern>%d{YYYY-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="trace">
<appender-ref ref="FILE"/>
<appender-ref ref="STDOUT"/>
</root>
<logger name="io.netty" level="INFO"/>
</configuration>