1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
This commit is contained in:
Cedric Beust 2017-03-15 11:03:25 -07:00
parent 908610ba3a
commit d01af588cd

View file

@ -67,7 +67,7 @@ class ParallelLogger @Inject constructor(val args: Args) : ILogger {
} }
private fun debug(s: CharSequence) { private fun debug(s: CharSequence) {
if (args.log >= 2) { if (args.log >= 3) {
val time = System.currentTimeMillis() - startTime!! val time = System.currentTimeMillis() - startTime!!
println(" ### [$time] $s") println(" ### [$time] $s")
} }