problem: run with INFO logging by default

This commit is contained in:
Igor Artamonov
2019-08-28 22:04:17 -04:00
parent 771618cf5b
commit 17d46aafc2
2 changed files with 2 additions and 1 deletions

View File

@@ -43,6 +43,7 @@ open class GrpcServer(
@PostConstruct
fun start() {
log.info("Starting GRPC Server...")
log.debug("Running with DEBUG LOGGING")
val port = env.getProperty("port", "8090").toInt()
log.info("Listening on 0.0.0.0:$port")
val serverBuilder = NettyServerBuilder.forPort(port)