refactor(logging): Remove verbose debug logging across multiple services

This commit is contained in:
cogwheel0
2025-12-03 11:24:51 +05:30
parent 8addbb74f1
commit 0109b52507
4 changed files with 1 additions and 125 deletions

View File

@@ -85,10 +85,6 @@ class ApiAuthInterceptor extends Interceptor {
final requiresAuth = _requiresAuth(path);
final hasOptionalAuth = _hasOptionalAuth(path);
DebugLogger.auth(
'Auth interceptor for $path - requires: $requiresAuth, optional: $hasOptionalAuth, token present: ${_authToken != null}',
);
if (requiresAuth) {
// Strictly required authentication
if (_authToken == null || _authToken!.isEmpty) {