Viz: use separate log config file

This commit is contained in:
2019-01-24 22:59:59 -08:00
parent ef446acc1b
commit 3a15cfeb3d
2 changed files with 33 additions and 1 deletions

View File

@ -43,8 +43,9 @@ run {
}
task runViz(type: JavaExec) {
description = "Run the visualizer log processor"
dependsOn classes
systemProperty 'logback.configurationFile', 'src/main/resources/logback.xml'
systemProperty 'logback.configurationFile', 'src/main/resources/logback-viz.xml'
classpath sourceSets.main.runtimeClasspath
main = 'Viz'
}