mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	* Add "details" column to LoggerMessage * Include error details in log details page * Move error details out of log message * Add error message to mixin * Create extension for HTTP Response logging * Fix analyze errors * format * fix analyze errors, format again
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:hooks_riverpod/hooks_riverpod.dart';
 | |
| import 'package:logging/logging.dart';
 | |
| 
 | |
| typedef AsyncFuture<T> = Future<AsyncValue<T>>;
 | |
| 
 | |
| mixin ErrorLoggerMixin {
 | |
|   abstract final Logger logger;
 | |
| 
 | |
|   /// Returns an AsyncValue<T> if the future is successfully executed
 | |
|   /// Else, logs the error to the overrided logger and returns an AsyncError<>
 | |
|   AsyncFuture<T> guardError<T>(
 | |
|     Future<T> Function() fn, {
 | |
|     required String errorMessage,
 | |
|     Level logLevel = Level.SEVERE,
 | |
|   }) async {
 | |
|     try {
 | |
|       final result = await fn();
 | |
|       return AsyncData(result);
 | |
|     } catch (error, stackTrace) {
 | |
|       logger.log(logLevel, errorMessage, error, stackTrace);
 | |
|       return AsyncError(error, stackTrace);
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   /// Returns the result of the future if success
 | |
|   /// Else, logs the error and returns the default value
 | |
|   Future<T> logError<T>(
 | |
|     Future<T> Function() fn, {
 | |
|     required T defaultValue,
 | |
|     required String errorMessage,
 | |
|     Level logLevel = Level.SEVERE,
 | |
|   }) async {
 | |
|     try {
 | |
|       return await fn();
 | |
|     } catch (error, stackTrace) {
 | |
|       logger.log(logLevel, errorMessage, error, stackTrace);
 | |
|     }
 | |
|     return defaultValue;
 | |
|   }
 | |
| }
 |