mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:27:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			501 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			501 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { LogLevel } from 'src/config';
 | |
| 
 | |
| export const ILoggerRepository = 'ILoggerRepository';
 | |
| 
 | |
| export interface ILoggerRepository {
 | |
|   setAppName(name: string): void;
 | |
|   setContext(message: string): void;
 | |
|   setLogLevel(level: LogLevel): void;
 | |
| 
 | |
|   verbose(message: any, ...args: any): void;
 | |
|   debug(message: any, ...args: any): void;
 | |
|   log(message: any, ...args: any): void;
 | |
|   warn(message: any, ...args: any): void;
 | |
|   error(message: any, ...args: any): void;
 | |
|   fatal(message: any, ...args: any): void;
 | |
| }
 |