From b0bfb1aedc2761620bafe3f64d6bdaa2ff1517c2 Mon Sep 17 00:00:00 2001 From: Agustin Borgna Date: Fri, 29 Sep 2023 10:18:02 +0100 Subject: [PATCH] Update logger docs --- src/optimiser/taso/log.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/optimiser/taso/log.rs b/src/optimiser/taso/log.rs index 92a9771b..1bbd9abd 100644 --- a/src/optimiser/taso/log.rs +++ b/src/optimiser/taso/log.rs @@ -80,13 +80,13 @@ impl<'w> TasoLogger<'w> { } } - /// Internal function to log general events, normally printed to stdout. + /// Log general events, normally printed to stdout. #[inline] pub fn log(&self, msg: impl AsRef) { tracing::info!(target: LOG_TARGET, "{}", msg.as_ref()); } - /// Internal function to log information on the progress of the optimization. + /// Log verbose information on the progress of the optimization. #[inline] pub fn progress(&self, msg: impl AsRef) { tracing::info!(target: PROGRESS_TARGET, "{}", msg.as_ref());