forked from FoundKeyGang/FoundKey
Better sql log
This commit is contained in:
parent
c52aeb6618
commit
bfcda7cc02
1 changed files with 4 additions and 2 deletions
|
@ -69,7 +69,9 @@ class MyCustomLogger implements Logger {
|
||||||
}
|
}
|
||||||
|
|
||||||
public logQuery(query: string, parameters?: any[]) {
|
public logQuery(query: string, parameters?: any[]) {
|
||||||
sqlLogger.info(this.highlight(query));
|
if (program.verbose) {
|
||||||
|
sqlLogger.info(this.highlight(query));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public logQueryError(error: string, query: string, parameters?: any[]) {
|
public logQueryError(error: string, query: string, parameters?: any[]) {
|
||||||
|
@ -158,7 +160,7 @@ export function initDb(justBorrow = false, sync = false, forceRecreate = false)
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
const log = program.verbose;
|
const log = process.env.NODE_ENV != 'production';
|
||||||
|
|
||||||
return createConnection({
|
return createConnection({
|
||||||
type: 'postgres',
|
type: 'postgres',
|
||||||
|
|
Loading…
Reference in a new issue