Minor: make the logger in the standalone node private to avoid accidental screwups due to name conflicts (mental or read)

This commit is contained in:
Mike Hearn 2016-09-02 16:54:01 +02:00
parent 958c7f8c9f
commit 2d40c7e6dc

View File

@ -9,7 +9,7 @@ import java.net.InetAddress
import java.nio.file.Path
import java.nio.file.Paths
val log = LoggerFactory.getLogger("Main")
private val log = LoggerFactory.getLogger("Main")
object ParamsSpec {
val parser = OptionParser()