Hide thread info in slf4j-simple

This commit is contained in:
Colin McDonald 2016-06-26 15:08:31 -04:00
parent 3a838b8b56
commit a4d00ca5b0
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import io.vertx.core.Vertx;
final class Main {
public static void main(String[] args) {
System.setProperty("org.slf4j.simpleLogger.showThreadName", "false");
System.setProperty("vertx.logger-delegate-factory-class-name", "io.vertx.core.logging.SLF4JLogDelegateFactory");
Vertx.vertx().deployVerticle(new APIv3());
}