diff options
author | Michael Lando <ml636r@att.com> | 2018-08-13 13:27:52 +0300 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-08-15 04:57:48 +0000 |
commit | dc856bba284798fa8f1484abf8fc8140008ececb (patch) | |
tree | d2c04a049fe2b5f1420cd02a545bce1109c46134 /catalog-fe/src/test | |
parent | 57f4bfa334d91b445e1999a5504fda4f43d0a1e4 (diff) |
maven improvements and clean up
update plugging to latest available versions,
remove un needed files from source control
clean up commented sections.
disable verbose for docker plug in.
add logback file for tests to disable out put by default.
update logging calls to new api.
disable logging on debug level.
update docker run to include simulator on demand
Change-Id: Icc0fb7add6dd4fe65f5f3d8dd309fd8dae2681fc
Issue-ID: SDC-1639
Signed-off-by: Michael Lando <ml636r@att.com>
Diffstat (limited to 'catalog-fe/src/test')
-rw-r--r-- | catalog-fe/src/test/resources/logback-test.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/catalog-fe/src/test/resources/logback-test.xml b/catalog-fe/src/test/resources/logback-test.xml index 9fc1778eba..d2b9bff23f 100644 --- a/catalog-fe/src/test/resources/logback-test.xml +++ b/catalog-fe/src/test/resources/logback-test.xml @@ -1,2 +1,13 @@ <!-- only one line, shut up logback ! --> -<configuration />
\ No newline at end of file +<configuration> + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> + <encoder> + <Pattern> + %d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n + </Pattern> + </encoder> + </appender> + <root level="OFF"> + <appender-ref ref="STDOUT" /> + </root> +</configuration>
\ No newline at end of file |