0

Зачатки серверной части

This commit is contained in:
2019-01-06 00:36:40 +03:00
parent 9b36a49717
commit 407a91c435
4 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package ks.server;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class Main {
public static void main(String[] args) {
log.info("KinoSearch - Server");
}
}

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration>
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss} [%-5level] (%logger{36}) %msg%n"/>
</Console>
</Appenders>
<Loggers>
<Root level="all">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>