1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-20 03:13:55 +00:00

Clean up some logs and comments

This commit is contained in:
Isaiah Inuwa
2025-11-13 14:03:48 -06:00
parent 0f6a02d250
commit 828c0753df
6 changed files with 50 additions and 134 deletions

View File

@@ -130,8 +130,6 @@ export class Main {
}
this.logService = new ElectronLogMainService(null, app.getPath("userData"));
this.logService.info("IS THIS THING ON?")
this.logService.debug("IS THIS THING ON? [debug]")
const storageDefaults: any = {};
this.storageService = new ElectronStorageService(app.getPath("userData"), storageDefaults);
@@ -310,7 +308,7 @@ export class Main {
app
.whenReady()
.then(async () => {
this.logService.debug("ATTEMPTING TO INITIALIZE NATIVE AUTOFILL")
this.logService.debug("Initializing native autofill")
await this.nativeAutofillMain.init();
})