aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-06-26 17:43:02 +0800
committerzelig <viktor.tron@gmail.com>2014-06-26 17:43:02 +0800
commit098136b68198083a47408ec5c04cd0c8f9fdcc87 (patch)
treeb45998787392c80627f2ee4883c5733412c0969c /ethereum.go
parent782f780476afb3c895c30583fc5cbd6d7d830d3d (diff)
downloaddexon-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar
dexon-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.gz
dexon-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.bz2
dexon-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.lz
dexon-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.xz
dexon-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.zst
dexon-098136b68198083a47408ec5c04cd0c8f9fdcc87.zip
ethereum logs server started/stopped message
Diffstat (limited to 'ethereum.go')
-rw-r--r--ethereum.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/ethereum.go b/ethereum.go
index 1de671712..28d1c0437 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -362,6 +362,7 @@ func (s *Ethereum) Start(seed bool) {
if seed {
s.Seed()
}
+ ethlogger.Infoln("Server started")
}
func (s *Ethereum) Seed() {
@@ -449,6 +450,7 @@ func (s *Ethereum) Stop() {
s.txPool.Stop()
s.stateManager.Stop()
+ ethlogger.Infoln("Server stopped")
close(s.shutdownChan)
}