Fix compile error caused by bad merge (#9176)

* Fix compile error caused by bad merge

* Fix

* Fix
This commit is contained in:
Joram Wilander
2018-07-27 12:57:17 -04:00
committed by GitHub
parent 835c0871a0
commit 441c8741c1

View File

@@ -200,7 +200,7 @@ func (g *apiRPCClient) LoadPluginConfiguration(dest interface{}) error {
log.Printf("RPC call to LoadPluginConfiguration API failed: %s", err.Error())
}
if err := json.Unmarshal(_returns.A, dest); err != nil {
g.log.Error("LoadPluginConfiguration API failed to unmarshal.", mlog.Err(err))
log.Printf("LoadPluginConfiguration API failed to unmarshal: %s", err.Error())
}
return nil
}