diff options
Diffstat (limited to 'ext/js/display')
| -rw-r--r-- | ext/js/display/display-anki.js | 4 | ||||
| -rw-r--r-- | ext/js/display/display.js | 5 | ||||
| -rw-r--r-- | ext/js/display/query-parser.js | 2 | 
3 files changed, 5 insertions, 6 deletions
| diff --git a/ext/js/display/display-anki.js b/ext/js/display/display-anki.js index d37efa85..03daf003 100644 --- a/ext/js/display/display-anki.js +++ b/ext/js/display/display-anki.js @@ -17,6 +17,7 @@   */  import {EventListenerCollection} from '../core/event-listener-collection.js'; +import {log} from '../core/log.js';  import {toError} from '../core/to-error.js';  import {deferPromise} from '../core/utilities.js';  import {AnkiNoteBuilder} from '../data/anki-note-builder.js'; @@ -568,8 +569,7 @@ export class DisplayAnki {          const content = this._display.displayGenerator.createAnkiNoteErrorsNotificationContent(displayErrors);          for (const node of content.querySelectorAll('.anki-note-error-log-link')) {              /** @type {EventListenerCollection} */ (this._errorNotificationEventListeners).addEventListener(node, 'click', () => { -                // eslint-disable-next-line no-console -                console.log({ankiNoteErrors: errors}); +                log.log({ankiNoteErrors: errors});              }, false);          } diff --git a/ext/js/display/display.js b/ext/js/display/display.js index f1cd4caf..4cd2d611 100644 --- a/ext/js/display/display.js +++ b/ext/js/display/display.js @@ -23,7 +23,7 @@ import {DynamicProperty} from '../core/dynamic-property.js';  import {EventDispatcher} from '../core/event-dispatcher.js';  import {EventListenerCollection} from '../core/event-listener-collection.js';  import {ExtensionError} from '../core/extension-error.js'; -import {log} from '../core/logger.js'; +import {log} from '../core/log.js';  import {toError} from '../core/to-error.js';  import {clone, deepEqual, promiseTimeout} from '../core/utilities.js';  import {PopupMenu} from '../dom/popup-menu.js'; @@ -2020,8 +2020,7 @@ export class Display extends EventDispatcher {              }          } -        // eslint-disable-next-line no-console -        console.log(result); +        log.log(result);      }      /** */ diff --git a/ext/js/display/query-parser.js b/ext/js/display/query-parser.js index c864617b..edae96fb 100644 --- a/ext/js/display/query-parser.js +++ b/ext/js/display/query-parser.js @@ -17,7 +17,7 @@   */  import {EventDispatcher} from '../core/event-dispatcher.js'; -import {log} from '../core/logger.js'; +import {log} from '../core/log.js';  import {querySelectorNotNull} from '../dom/query-selector.js';  import {convertHiraganaToKatakana, convertKatakanaToHiragana, isStringEntirelyKana} from '../language/ja/japanese.js';  import {TextScanner} from '../language/text-scanner.js'; |