diff --git a/apps/desktop/desktop_native/macos_provider/README.md b/apps/desktop/desktop_native/macos_provider/README.md index b3f5d74170d..c042dd5fe6f 100644 --- a/apps/desktop/desktop_native/macos_provider/README.md +++ b/apps/desktop/desktop_native/macos_provider/README.md @@ -7,7 +7,7 @@ MacOS has native APIs (similar to iOS) to allow Credential Managers to provide c We’ve written a Swift-based native autofill-extension. It’s 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: diff --git a/apps/desktop/src/autofill/services/desktop-autofill.service.ts b/apps/desktop/src/autofill/services/desktop-autofill.service.ts index a2418e9fdf8..f4b60064a3b 100644 --- a/apps/desktop/src/autofill/services/desktop-autofill.service.ts +++ b/apps/desktop/src/autofill/services/desktop-autofill.service.ts @@ -155,7 +155,7 @@ export class DesktopAutofillService implements OnDestroy { })); } - this.logService.warning("Syncing autofill credentials", { + this.logService.info("Syncing autofill credentials", { fido2Credentials, passwordCredentials, }); diff --git a/apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts b/apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts index 8d4a2bdab68..12182570670 100644 --- a/apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts +++ b/apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts @@ -313,7 +313,7 @@ export class DesktopFido2UserInterfaceSession implements Fido2UserInterfaceSessi } async updateCredential(cipher: CipherView): Promise { - this.logService.warning("updateCredential"); + this.logService.info("updateCredential"); await firstValueFrom( this.accountService.activeAccount$.pipe( map(async (a) => {