mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-08 13:25:17 +00:00
add temporary fix to cases where logger doesnt have certain methods
This commit is contained in:
parent
e10641b1a0
commit
ef90df4060
@ -34,7 +34,10 @@ class Engine {
|
||||
if (this.interceptLogs || this.interceptLogs === undefined) {
|
||||
this.doInterceptLogs();
|
||||
}
|
||||
this.logger.registerAPICall(this.plugins);
|
||||
// temporary fix
|
||||
if (this.logger.registerAPICall) {
|
||||
this.logger.registerAPICall(this.plugins);
|
||||
}
|
||||
}
|
||||
|
||||
doInterceptLogs() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user