fix: tune log levels across workspace — demote noisy warn to debug/trace

Reduce log noise for non-critical operational paths: connection retries,
expected fallbacks, graceful degradation, and optional feature absence.
Keeps warn/error for genuine failures requiring attention.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jgrusewski
2026-03-14 11:35:15 +01:00
parent dba50fa3be
commit e4870b17b9
61 changed files with 231 additions and 231 deletions

View File

@@ -412,7 +412,7 @@ impl LimitsRepositoryImpl {
| LimitType::VarLimit
| LimitType::ConcentrationLimit
| LimitType::LeverageLimit => {
tracing::error!("Unknown limit type in exposure calculation - using current value as conservative fallback");
tracing::warn!("Unknown limit type in exposure calculation - using current value as conservative fallback");
current_exposure.current_value // Conservative fallback for unknown limit types
},
};