import modules properly

This commit is contained in:
buzz-lightsnack-2007 2024-04-16 20:21:20 +08:00
parent d71e9effd0
commit 2b24bf17b0
2 changed files with 11 additions and 15 deletions

View file

@ -70,9 +70,6 @@ export default class logging {
@param {boolean} critical the critical nature
*/
static async error(ERROR_CODE, ERROR_MESSAGE, ERROR_STACK, critical = true) {
// Import the templating.
const texts = (await import(chrome.runtime.getURL("/scripts/strings/read.js"))).default;
// Display the error message.
console.error(texts.localized(`error_msg`, false, [ERROR_CODE, ERROR_MESSAGE, ERROR_STACK]));
if (critical) {