I thought you were talking about Gremlin Console on the other thread...
If you're running your own Java project, keep an eye on your depedency tree (
mvn dependency:tree) for logback somehow sneaking ahead of slf4j. With this barebones config, I'm able to run a simple Titan-Cassandra program without getting excessive debugging.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<titan.version>1.0.0</titan.version>
</properties>
<dependencies>
<dependency>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-core</artifactId>
<version>${titan.version}</version>
</dependency>
<dependency>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-cassandra</artifactId>
<version>${titan.version}</version>
</dependency>
</dependencies>
Another alternative that Effy suggested -- using a
logback.xml -- is also noted on this issue
https://github.com/thinkaurelius/titan/issues/1242 -- Jason