Add tcp-with-headers sample\

* Fix http/https in license; skip hidden files in project scan.
This commit is contained in:
Gary Russell
2019-03-25 12:49:27 -04:00
committed by Artem Bilan
parent cb052d2d98
commit 8eb85d29b3
9 changed files with 443 additions and 6 deletions

View File

@@ -0,0 +1,19 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="warn">
<appender-ref ref="STDOUT" />
</root>
<logger name="org.springframework" level="WARN" />
<logger name="org.springframework.integration" level="WARN" />
<logger name="exampleLogger" level="INFO" />
</configuration>