From 129531a320e246ba0b15d33c500c792bcfe6b0cd Mon Sep 17 00:00:00 2001 From: Dmitry Yakimenko Date: Sat, 25 Oct 2025 19:35:45 +0200 Subject: [PATCH] Disable logging, oops... --- .../src/bin/bitwarden_chromium_import_helper.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/desktop_native/bitwarden_chromium_importer/src/bin/bitwarden_chromium_import_helper.rs b/apps/desktop/desktop_native/bitwarden_chromium_importer/src/bin/bitwarden_chromium_import_helper.rs index 764aacbead1..dc8b4ef5fd2 100644 --- a/apps/desktop/desktop_native/bitwarden_chromium_importer/src/bin/bitwarden_chromium_import_helper.rs +++ b/apps/desktop/desktop_native/bitwarden_chromium_importer/src/bin/bitwarden_chromium_import_helper.rs @@ -61,8 +61,8 @@ mod windows_binary { } // Enable this to log to a file. The way this executable is used, it's not easy to debug and the stdout gets lost. - const NEED_LOGGING: bool = true; - const LOG_FILENAME: &str = "c:\\temp\\admin-log.txt"; // This is an example filename, replace it with you own + const NEED_LOGGING: bool = false; + const LOG_FILENAME: &str = "c:\\path\\to\\log.txt"; // This is an example filename, replace it with you own // This should be enabled for production const NEED_SERVER_SIGNATURE_VALIDATION: bool = false;