Is there a way to disable all internal logging in this dependency (ethereumj) ?
Currently seems like its still loggin something.
What i did to combat this was exclude logback dependency (Im using maven) :
<!-- https://mvnrepository.com/artifact/org.ethereum/ethereumj-core -->
<dependency>
<groupId>org.ethereum</groupId>
<artifactId>ethereumj-core</artifactId>
<version>1.12.0-RELEASE</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-parent</artifactId>
</exclusion>
</exclusions>
</dependency>
Bud when i look at unstaged files I can still see logs/ethereum.log So looks like this logback is still active maybe its included from another dependency. Do i have to go thru all dependencies i have and look for internal dependencies if logback is present or is there some better way?