Chat
This commit is contained in:
BIN
target/classes/com/example/AkkaQuickstart.class
Normal file
BIN
target/classes/com/example/AkkaQuickstart.class
Normal file
Binary file not shown.
BIN
target/classes/com/example/Greeter$Greet.class
Normal file
BIN
target/classes/com/example/Greeter$Greet.class
Normal file
Binary file not shown.
BIN
target/classes/com/example/Greeter$Greeted.class
Normal file
BIN
target/classes/com/example/Greeter$Greeted.class
Normal file
Binary file not shown.
BIN
target/classes/com/example/Greeter.class
Normal file
BIN
target/classes/com/example/Greeter.class
Normal file
Binary file not shown.
BIN
target/classes/com/example/GreeterBot.class
Normal file
BIN
target/classes/com/example/GreeterBot.class
Normal file
Binary file not shown.
BIN
target/classes/com/example/GreeterMain$SayHello.class
Normal file
BIN
target/classes/com/example/GreeterMain$SayHello.class
Normal file
Binary file not shown.
BIN
target/classes/com/example/GreeterMain.class
Normal file
BIN
target/classes/com/example/GreeterMain.class
Normal file
Binary file not shown.
21
target/classes/logback.xml
Normal file
21
target/classes/logback.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration>
|
||||
<!-- This is a development logging configuration that logs to standard out, for an example of a production
|
||||
logging config, see the Akka docs: https://doc.akka.io/docs/akka/2.6/typed/logging.html#logback -->
|
||||
<appender name="STDOUT" target="System.out" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<encoder>
|
||||
<pattern>[%date{ISO8601}] [%level] [%logger] [%thread] [%X{akkaSource}] - %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<appender name="ASYNC" class="ch.qos.logback.classic.AsyncAppender">
|
||||
<queueSize>1024</queueSize>
|
||||
<neverBlock>true</neverBlock>
|
||||
<appender-ref ref="STDOUT" />
|
||||
</appender>
|
||||
|
||||
<root level="INFO">
|
||||
<appender-ref ref="ASYNC"/>
|
||||
</root>
|
||||
|
||||
</configuration>
|
Reference in New Issue
Block a user