Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion injected/src/features/autofill-import.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ export default class AutofillImport extends ActionExecutorBase {
}
}
} catch {
console.error('password-import: failed for path:', pathname);
this.log.error('password-import: failed for path:', pathname);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion injected/src/features/broker-protection.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class ActionExecutorBase extends ContentFeature {
return this.messaging.notify('actionError', { error: 'No response found, exceptions: ' + exceptions.join(', ') });
}
} catch (e) {
console.log('unhandled exception: ', e);
this.log.error('unhandled exception: ', e);
return this.messaging.notify('actionError', { error: e.toString() });
}
}
Expand Down
Loading