Skip to content

Commit

Permalink
fix(page): console.error was replaced by debugError
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaShustal committed Dec 29, 2021
1 parent 3c20ab4 commit 56d88d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/FrameManager.ts
Expand Up @@ -16,7 +16,7 @@

import { EventEmitter } from './EventEmitter.js';
import { assert } from './assert.js';
import { helper } from './helper.js';
import { helper, debugError } from './helper.js';
import { ExecutionContext, EVALUATION_SCRIPT_URL } from './ExecutionContext.js';
import {
LifecycleWatcher,
Expand Down Expand Up @@ -398,7 +398,7 @@ export class FrameManager extends EventEmitter {
frameId: frame._id,
worldName: name,
grantUniveralAccess: true,
}).catch(console.error)
}).catch(debugError)
)
);
}
Expand Down

0 comments on commit 56d88d3

Please sign in to comment.