@blueleader07/typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
94 lines (92 loc) • 2.98 kB
JavaScript
import debug from "debug";
import { PlatformTools } from "../platform/PlatformTools";
/**
* Performs logging of the events in TypeORM via debug library.
*/
export class DebugLogger {
constructor() {
this.debugQueryLog = debug("typeorm:query:log");
this.debugQueryError = debug("typeorm:query:error");
this.debugQuerySlow = debug("typeorm:query:slow");
this.debugSchemaBuild = debug("typeorm:schema");
this.debugMigration = debug("typeorm:migration");
this.debugLog = debug("typeorm:log");
this.debugInfo = debug("typeorm:info");
this.debugWarn = debug("typeorm:warn");
}
/**
* Logs query and parameters used in it.
*/
logQuery(query, parameters, queryRunner) {
if (this.debugQueryLog.enabled) {
this.debugQueryLog(PlatformTools.highlightSql(query) + ";");
if (parameters && parameters.length) {
this.debugQueryLog("parameters:", parameters);
}
}
}
/**
* Logs query that failed.
*/
logQueryError(error, query, parameters, queryRunner) {
if (this.debugQueryError.enabled) {
this.debugQueryError(PlatformTools.highlightSql(query) + ";");
if (parameters && parameters.length) {
this.debugQueryError("parameters:", parameters);
}
this.debugQueryError("error: ", error);
}
}
/**
* Logs query that is slow.
*/
logQuerySlow(time, query, parameters, queryRunner) {
if (this.debugQuerySlow.enabled) {
this.debugQuerySlow(PlatformTools.highlightSql(query) + ";");
if (parameters && parameters.length) {
this.debugQuerySlow("parameters:", parameters);
}
this.debugQuerySlow("execution time:", time);
}
}
/**
* Logs events from the schema build process.
*/
logSchemaBuild(message, queryRunner) {
if (this.debugSchemaBuild.enabled) {
this.debugSchemaBuild(message);
}
}
/**
* Logs events from the migration run process.
*/
logMigration(message, queryRunner) {
if (this.debugMigration.enabled) {
this.debugMigration(message);
}
}
/**
* Perform logging using given logger.
* Log has its own level and message.
*/
log(level, message, queryRunner) {
switch (level) {
case "log":
if (this.debugLog.enabled) {
this.debugLog(message);
}
break;
case "info":
if (this.debugInfo.enabled) {
this.debugInfo(message);
}
break;
case "warn":
if (this.debugWarn.enabled) {
this.debugWarn(message);
}
break;
}
}
}
//# sourceMappingURL=DebugLogger.js.map