sorted all errors and made first Jar file

version 1.0
This commit is contained in:
nzBryce101
2024-04-15 23:18:28 +12:00
parent 4cf29ee0bd
commit 79517ca036
10 changed files with 80 additions and 17 deletions

13
target/classes/log4j2.xml Normal file
View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<File name="File" fileName="../logs/bot.log">
<PatternLayout pattern="%d{dd-MM-yyyy HH:mm:ss} [%t] %-5level %logger{36} - %msg%n" />
</File>
</Appenders>
<Loggers>
<Root level="info">
<AppenderRef ref="File" />
</Root>
</Loggers>
</Configuration>