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

@@ -224,7 +224,7 @@ class ModelFilterSet:
duration = time.perf_counter() - overall_start
if duration > 0.1: # Only log if it's potentially slow
logger.info(
logger.debug(
"ModelFilterSet.apply took %.3fs (sfw: %.3fs, fav: %.3fs, folder: %.3fs, base: %.3fs, tags: %.3fs, types: %.3fs). "
"Count: %d -> %d",
duration, sfw_duration, favorites_duration, folder_duration,