Convert all INFO logs to DEBUG to reduce CLI noise

Converted ~77 info! macro calls to debug! across the codebase to prevent
log messages from interrupting the CLI experience during normal operation.
Users can still see these logs by setting RUST_LOG=debug if needed.

Affected crates:
- g3-cli
- g3-computer-control
- g3-console
- g3-core
- g3-ensembles
- g3-execution
- g3-providers
This commit is contained in:
Dhanji R. Prasanna
2025-12-22 16:27:35 +11:00
parent 58cbf3431a
commit 923def0ab2
19 changed files with 92 additions and 92 deletions

View File

@@ -10,7 +10,7 @@ use crate::ui_writer::UiWriter;
use crate::{Agent, DiscoveryOptions, TaskResult};
use anyhow::Result;
use std::time::Instant;
use tracing::{info, warn};
use tracing::{debug, warn};
/// Configuration for retry behavior
#[derive(Debug, Clone)]
@@ -142,7 +142,7 @@ where
match result {
Ok(task_result) => {
if retry_count > 0 {
info!(
debug!(
"{} task succeeded after {} retries (elapsed: {:?})",
config.role_name,
retry_count,
@@ -259,7 +259,7 @@ where
match operation().await {
Ok(result) => {
if retry_count > 0 {
info!(
debug!(
"Operation '{}' succeeded after {} retries",
operation_name, retry_count
);