Commit 9a06efd0 authored by zelig's avatar zelig

new logger API for upstream merge

parent 6763d28a
...@@ -22,7 +22,7 @@ func NewQmlApplication(path string, lib *UiLib) *QmlApplication { ...@@ -22,7 +22,7 @@ func NewQmlApplication(path string, lib *UiLib) *QmlApplication {
func (app *QmlApplication) Create() error { func (app *QmlApplication) Create() error {
component, err := app.engine.LoadFile(app.path) component, err := app.engine.LoadFile(app.path)
if err != nil { if err != nil {
ethutil.Config.Log.Debugln(err) logger.Warnln(err)
} }
app.win = component.CreateWindow(nil) app.win = component.CreateWindow(nil)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment