feat: reduce log verbosity by changing info logs to debug

Changed logging level from INFO to DEBUG for performance-related messages in model management service. This reduces noise in production logs while maintaining debugging capability for performance analysis.
This commit is contained in:
Will Miao
2025-12-31 16:14:24 +08:00
parent 102defe29c
commit afa5533145
4 changed files with 4 additions and 4 deletions

View File

@@ -151,7 +151,7 @@ class BaseModelService(ABC):
annotate_duration = time.perf_counter() - t4
overall_duration = time.perf_counter() - overall_start
logger.info(
logger.debug(
"%s.get_paginated_data took %.3fs (fetch: %.3fs, filter: %.3fs, update_filter: %.3fs, pagination: %.3fs, annotate: %.3fs). "
"Counts: initial=%d, post_filter=%d, final=%d",
self.__class__.__name__, overall_duration, fetch_duration, filter_duration,