From 87eabd0d029a1cf1d2c3a4b5f6dc47aefd17a53d Mon Sep 17 00:00:00 2001 From: Maximiliano Biandratti Date: Wed, 20 Jan 2021 11:26:46 -0300 Subject: [PATCH] fix - adding metrics config in the package build --- build.sbt | 1 + src/universal/conf/faucet.conf | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/build.sbt b/build.sbt index bd1a1cd168..5fc5d9550c 100644 --- a/build.sbt +++ b/build.sbt @@ -194,6 +194,7 @@ lazy val node = { ThisBuild / jdkPackagerType := "image", mappings in Universal += (resourceDirectory in Compile).value / "logback.xml" -> "conf/logback.xml", mappings in Universal += (resourceDirectory in Compile).value / "application.conf" -> "conf/base.conf", + mappings in Universal += (resourceDirectory in Compile).value / "metrics.conf" -> "conf/metrics.conf", mappings in Universal ++= directory((resourceDirectory in Compile).value / "chains").map { case (f, name) => f -> s"conf/$name" }, diff --git a/src/universal/conf/faucet.conf b/src/universal/conf/faucet.conf index 6d3df5e57f..1f98d76f73 100644 --- a/src/universal/conf/faucet.conf +++ b/src/universal/conf/faucet.conf @@ -74,6 +74,9 @@ logging { # Logs filename logs-file = "faucet" + + # Logs level + logs-level = "INFO" } mantis { @@ -145,3 +148,5 @@ mantis { } } } + +kanela.show-banner = false