mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Better sql log
This commit is contained in:
		
							parent
							
								
									c52aeb6618
								
							
						
					
					
						commit
						bfcda7cc02
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -69,8 +69,10 @@ class MyCustomLogger implements Logger {
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	public logQuery(query: string, parameters?: any[]) {
 | 
			
		||||
		if (program.verbose) {
 | 
			
		||||
			sqlLogger.info(this.highlight(query));
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	public logQueryError(error: string, query: string, parameters?: any[]) {
 | 
			
		||||
		sqlLogger.error(this.highlight(query));
 | 
			
		||||
| 
						 | 
				
			
			@ -158,7 +160,7 @@ export function initDb(justBorrow = false, sync = false, forceRecreate = false)
 | 
			
		|||
		} catch (e) {}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	const log = program.verbose;
 | 
			
		||||
	const log = process.env.NODE_ENV != 'production';
 | 
			
		||||
 | 
			
		||||
	return createConnection({
 | 
			
		||||
		type: 'postgres',
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue