浏览代码

cmd/geth: print version on geth start (#2622)

Matthew Di Ferrante 9 年之前
父节点
当前提交
68b48cc045
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      cmd/geth/main.go

+ 2 - 0
cmd/geth/main.go

@@ -310,6 +310,8 @@ func initGenesis(ctx *cli.Context) error {
 // it unlocks any requested accounts, and starts the RPC/IPC interfaces and the
 // miner.
 func startNode(ctx *cli.Context, stack *node.Node) {
+	// Report geth version
+	glog.V(logger.Info).Infof("instance: Geth/%s/%s/%s\n", verString, runtime.Version(), runtime.GOOS)
 	// Start up the node itself
 	utils.StartNode(stack)