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 authored and OrKoN committed Feb 11, 2022
1 parent 0eebe4e commit 32d4312
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 @@ -397,7 +397,7 @@ export class FrameManager extends EventEmitter {
frameId: frame._id,
worldName: name,
grantUniveralAccess: true,
}).catch(console.error)
}).catch(debugError)
)
);
}
Expand Down

0 comments on commit 32d4312

Please sign in to comment.