diff options
Diffstat (limited to 'ext/js/comm')
-rw-r--r-- | ext/js/comm/api.js | 12 | ||||
-rw-r--r-- | ext/js/comm/cross-frame-api.js | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/ext/js/comm/api.js b/ext/js/comm/api.js index 40b8e252..f07702da 100644 --- a/ext/js/comm/api.js +++ b/ext/js/comm/api.js @@ -253,13 +253,13 @@ export class API { } /** - * @param {import('api').ApiParam<'log', 'error'>} error - * @param {import('api').ApiParam<'log', 'level'>} level - * @param {import('api').ApiParam<'log', 'context'>} context - * @returns {Promise<import('api').ApiReturn<'log'>>} + * @param {import('api').ApiParam<'logGenericErrorBackend', 'error'>} error + * @param {import('api').ApiParam<'logGenericErrorBackend', 'level'>} level + * @param {import('api').ApiParam<'logGenericErrorBackend', 'context'>} context + * @returns {Promise<import('api').ApiReturn<'logGenericErrorBackend'>>} */ - log(error, level, context) { - return this._invoke('log', {error, level, context}); + logGenericErrorBackend(error, level, context) { + return this._invoke('logGenericErrorBackend', {error, level, context}); } /** diff --git a/ext/js/comm/cross-frame-api.js b/ext/js/comm/cross-frame-api.js index 33a91c89..45ea268f 100644 --- a/ext/js/comm/cross-frame-api.js +++ b/ext/js/comm/cross-frame-api.js @@ -21,7 +21,7 @@ import {EventDispatcher} from '../core/event-dispatcher.js'; import {EventListenerCollection} from '../core/event-listener-collection.js'; import {ExtensionError} from '../core/extension-error.js'; import {parseJson} from '../core/json.js'; -import {log} from '../core/logger.js'; +import {log} from '../core/log.js'; /** * @augments EventDispatcher<import('cross-frame-api').CrossFrameAPIPortEvents> |