From fde8c69d9685804cd5b86de5470a39cabdf2d681 Mon Sep 17 00:00:00 2001 From: Stanislav Riabokon <Stanislav_Riabokon@epam.com> Date: Fri, 1 Oct 2021 21:07:19 +0400 Subject: [PATCH] Added logback. --- .../src/test/resources/logback-test.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 testing/notification-test-gcp/src/test/resources/logback-test.xml diff --git a/testing/notification-test-gcp/src/test/resources/logback-test.xml b/testing/notification-test-gcp/src/test/resources/logback-test.xml new file mode 100644 index 000000000..22c6175d4 --- /dev/null +++ b/testing/notification-test-gcp/src/test/resources/logback-test.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<configuration> + <include resource="org/springframework/boot/logging/logback/defaults.xml"/> + <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> + <encoder> + <pattern>%yellow([%thread]) %highlight(| %-5level |) %green(%d) %cyan(| %logger{15} |) %highlight(%msg) %n</pattern> + <charset>utf8</charset> + </encoder> + </appender> + <root level="INFO"> + <appender-ref ref="CONSOLE" /> + </root> +</configuration> -- GitLab