1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-04 18:53:20 +00:00

Change log service levels

This commit is contained in:
Jeffrey Holland
2025-08-25 13:29:01 +02:00
parent f556a49ba6
commit 69ddbb1b51
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ MacOS has native APIs (similar to iOS) to allow Credential Managers to provide c
Weve written a Swift-based native autofill-extension. Its bundled in the app-bundle in PlugIns, similar to the safari-extension.
This swift extension currently communicates with our Electron app through IPC based on a unix socket. The IPC implementation is done in Rust and utilized through RustFFI + NAPI bindings.
This swift extension currently communicates with our Electron app through IPC based on a unix socket. The IPC implementation is done in Rust and utilized through UniFFI + NAPI bindings.
Footnotes:

View File

@@ -155,7 +155,7 @@ export class DesktopAutofillService implements OnDestroy {
}));
}
this.logService.warning("Syncing autofill credentials", {
this.logService.info("Syncing autofill credentials", {
fido2Credentials,
passwordCredentials,
});

View File

@@ -313,7 +313,7 @@ export class DesktopFido2UserInterfaceSession implements Fido2UserInterfaceSessi
}
async updateCredential(cipher: CipherView): Promise<void> {
this.logService.warning("updateCredential");
this.logService.info("updateCredential");
await firstValueFrom(
this.accountService.activeAccount$.pipe(
map(async (a) => {