From f90001e938ce34457cc0ed5822c8e7dff52ec58c Mon Sep 17 00:00:00 2001 From: zelig Date: Mon, 23 Jun 2014 11:38:14 +0100 Subject: [PATCH] add logging start/exit to js console --- ethereum/repl.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ethereum/repl.go b/ethereum/repl.go index 0208459ad..a95d73300 100644 --- a/ethereum/repl.go +++ b/ethereum/repl.go @@ -23,11 +23,13 @@ func NewJSRepl(ethereum *eth.Ethereum) *JSRepl { } func (self *JSRepl) Start() { + logger.Infoln("init JS Console") self.read() } func (self *JSRepl) Stop() { self.re.Stop() + logger.Infoln("exit JS Console") } func (self *JSRepl) parseInput(code string) {