From d37882bd8b3f148214b2a7c321f7c4314bde93db Mon Sep 17 00:00:00 2001 From: suo Date: Mon, 16 Jun 2025 15:46:53 -0700 Subject: [PATCH] [monarch] make tracing initialization log to debug Slowly trying to eliminate library-generated noise from monarch output. My principle is that in default mode (INFO): we should intend for any logs generated to be directly consumed by the user. If it's relevant mostly for us as monarch developers, it should go to DEBUG. Differential Revision: [D76771090](https://our.internmc.facebook.com/intern/diff/D76771090/) **NOTE FOR REVIEWERS**: This PR has internal Meta-specific changes or comments, please review them on [Phabricator](https://our.internmc.facebook.com/intern/diff/D76771090/)! [ghstack-poisoned] --- hyperactor_telemetry/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperactor_telemetry/src/lib.rs b/hyperactor_telemetry/src/lib.rs index c073ad427..6524c45e7 100644 --- a/hyperactor_telemetry/src/lib.rs +++ b/hyperactor_telemetry/src/lib.rs @@ -453,7 +453,7 @@ pub fn initialize_logging() { tracing::debug!("logging already initialized for this process: {}", err); } let exec_id = env::execution_id(); - tracing::info!( + tracing::debug!( target: "execution", execution_id = exec_id, environment = %Env::current(),