aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/ui/html_container.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-06-23 18:41:11 +0800
committerzelig <viktor.tron@gmail.com>2014-06-23 18:57:00 +0800
commitd060ae6a368bb880132e548c58b33e2508adc125 (patch)
tree1ed8f383c764c3fe547a9bacf1d7346522c0ff35 /ethereal/ui/html_container.go
parent7bcf875c577cd9710d27dd4511ae21aa62067d79 (diff)
downloadgo-tangerine-d060ae6a368bb880132e548c58b33e2508adc125.tar.gz
go-tangerine-d060ae6a368bb880132e548c58b33e2508adc125.tar.zst
go-tangerine-d060ae6a368bb880132e548c58b33e2508adc125.zip
changed logger API, functions that allow Gui to implement ethlog.LogSystem for gui logging
Diffstat (limited to 'ethereal/ui/html_container.go')
-rw-r--r--ethereal/ui/html_container.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/ui/html_container.go b/ethereal/ui/html_container.go
index 3867c0353..d7dc80af7 100644
--- a/ethereal/ui/html_container.go
+++ b/ethereal/ui/html_container.go
@@ -96,11 +96,11 @@ func (app *HtmlApplication) NewWatcher(quitChan chan bool) {
app.watcher.Close()
break out
case <-app.watcher.Event:
- //ethutil.Config.Log.Debugln("Got event:", ev)
+ //logger.Debugln("Got event:", ev)
app.webView.Call("reload")
case err := <-app.watcher.Error:
// TODO: Do something here
- ethutil.Config.Log.Infoln("Watcher error:", err)
+ logger.Infoln("Watcher error:", err)
}
}
}()