Hi all. I have one problem. In our project we use slf4j as frontend and logback classic as backend for logging. When I tried to connect to gradle through tooling api I see strange behaviour:
our logback configuration is configured to this format of messages: 2015-03-02 11:55:02,887[thread] [DEBUG] [.c.a.c.n.Clazz 256] - Message
tooling api logback configuration is configured to this format of messages: 11:35:27.106 [Connection worker] DEBUG o.g.t.i.provider.DefaultConnection - Tooling API provider 2.3 created
when tooling api connects to gradle daemon, simple text is printing direct to System.out through slf4j breaking all formatting and after that we I had in console broken output of my log messages printed from my own code.
How can I say Gradle’s logger to deny printing log messages to console and print them for example into file?