diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-23 18:41:11 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-23 18:57:00 +0800 |
commit | d060ae6a368bb880132e548c58b33e2508adc125 (patch) | |
tree | 1ed8f383c764c3fe547a9bacf1d7346522c0ff35 /ethereal/ui/html_container.go | |
parent | 7bcf875c577cd9710d27dd4511ae21aa62067d79 (diff) | |
download | go-tangerine-d060ae6a368bb880132e548c58b33e2508adc125.tar go-tangerine-d060ae6a368bb880132e548c58b33e2508adc125.tar.gz go-tangerine-d060ae6a368bb880132e548c58b33e2508adc125.tar.bz2 go-tangerine-d060ae6a368bb880132e548c58b33e2508adc125.tar.lz go-tangerine-d060ae6a368bb880132e548c58b33e2508adc125.tar.xz 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.go | 4 |
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) } } }() |