TF-4136 refactor(logging): replace logError with logWarning for non-critical cases
This commit is contained in:
@@ -5,7 +5,11 @@ class CacheExceptionThrower extends ExceptionThrower {
|
||||
|
||||
@override
|
||||
throwException(dynamic error, dynamic stackTrace) {
|
||||
logError('CacheExceptionThrower::throwException():error: $error | stackTrace: $stackTrace');
|
||||
logError(
|
||||
'CacheExceptionThrower::throwException():error: $error',
|
||||
exception: error,
|
||||
stackTrace: stackTrace,
|
||||
);
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user