Skip to content
Open
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions crates/google-workspace-cli/src/credential_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,8 @@ fn get_or_create_key() -> anyhow::Result<[u8; 32]> {
#[cfg(test)]
let backend = KeyringBackend::File; // Force file to avoid native keychain prompts during test execution

// Item 5: log which backend was selected
eprintln!("Using keyring backend: {}", backend.as_str());
// Item 5: log which backend was selected (audit trail; controlled by GOOGLE_WORKSPACE_CLI_LOG)
tracing::info!(backend = backend.as_str(), "Using keyring backend");

let username = std::env::var("USER")
.or_else(|_| std::env::var("USERNAME"))
Expand Down
Loading