Skip to content

Commit 2a7af2e

Browse files
authored
[Kaizen] Add build githash to startup log (#939)
1 parent cba4321 commit 2a7af2e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

nix/pkgs/mantis.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ in sbt.mkDerivation {
5050

5151
# This sha represents the change dependencies of mantis.
5252
# Update this sha whenever you change the dependencies
53-
depsSha256 = "14hx1gxa7505b8jy1vq5gc5p51fn80sj0pafx26awsrl6q67qyld";
53+
depsSha256 = "0n7vv4k73cxjwg40qggr7gnkkg7vn8a179sf0wxnz3absj1700jj";
5454

5555
# this is the command used to to create the fixed-output-derivation
5656
depsWarmupCommand = "sbt compile --debug -Dnix=true";

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
logLevel := sbt.Level.Warn
2-
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
2+
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
33
addSbtPlugin("com.github.mwz" % "sbt-sonar" % "2.2.0")
44
addSbtPlugin("com.lightbend.sbt" % "sbt-javaagent" % "0.1.6")
55
addSbtPlugin("com.sksamuel.scapegoat" % "sbt-scapegoat" % "1.1.0")

src/main/scala/io/iohk/ethereum/Mantis.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ object Mantis extends Logger {
1111
new TestNode
1212
} else new StdNode
1313

14+
log.info("Mantis app {}", Config.clientVersion)
1415
log.info("Using network {}", Config.blockchains.network)
1516

1617
node.start()

0 commit comments

Comments
 (0)