teleivo
(Ivo Ulrich)
April 25, 2017, 6:07pm
1
Hi,
have you noticed that our tests spit out a lot of log messages which clutter the build for example on travis CI?
I am in favor of getting rid of them by probably configuring the log config file. Every dev can change the setting locally if needed.
1 Like
dkayiwa
(Daniel Kayiwa)
April 26, 2017, 1:49pm
2
@teleivo that looks exciting! Do you have a pull request for us to see it in action?
teleivo
(Ivo Ulrich)
April 29, 2017, 6:47am
3
will do its on my perpetuum todo list, my forecast says the sun will still need to rise 30 times
teleivo
(Ivo Ulrich)
May 6, 2017, 11:56am
4
commited a little change to remove log4j logging during tests at
TRUNK-5163 Disable logs during tests
Type: Task
Priority: TBD
there are still entries like
INFO 5/6/17 11:53 AM:liquibase: Creating database history table with name: LIQUIBASECHANGELOG
in the build about liquibase changesets coming from Database1_9_7UpgradeIT, would you like them to be removed as well?
If so, anyone knows how they are printed? Dont think they come from log4j
dkayiwa
(Daniel Kayiwa)
May 7, 2017, 9:11pm
5
Did you try adding this?
<dependency>
<groupId>com.mattbertolini</groupId>
<artifactId>liquibase-slf4j</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
teleivo
(Ivo Ulrich)
May 9, 2017, 6:26pm
6
dkayiwa:
liquibase-slf4j
thanks for the tip @dkayiwa ! So awkward that this is needed At the moment I dont feel like adding this dependency. I mean I am trying to get rid of old, unmaintained dependencies.