diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-26 17:43:02 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-26 17:43:02 +0800 |
commit | 098136b68198083a47408ec5c04cd0c8f9fdcc87 (patch) | |
tree | b45998787392c80627f2ee4883c5733412c0969c /ethereum.go | |
parent | 782f780476afb3c895c30583fc5cbd6d7d830d3d (diff) | |
download | go-tangerine-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar go-tangerine-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.gz go-tangerine-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.bz2 go-tangerine-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.lz go-tangerine-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.xz go-tangerine-098136b68198083a47408ec5c04cd0c8f9fdcc87.tar.zst go-tangerine-098136b68198083a47408ec5c04cd0c8f9fdcc87.zip |
ethereum logs server started/stopped message
Diffstat (limited to 'ethereum.go')
-rw-r--r-- | ethereum.go | 2 |
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) } |