From edb6ee35a97219608f37c4ddd1b8536dac4d7a67 Mon Sep 17 00:00:00 2001 From: Will Hunt <will@half-shot.uk> Date: Sun, 27 Jan 2019 16:49:47 +0000 Subject: [PATCH] Fix logger name --- src/db/postgres.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/postgres.ts b/src/db/postgres.ts index 834f841..aa9116d 100644 --- a/src/db/postgres.ts +++ b/src/db/postgres.ts @@ -17,7 +17,7 @@ limitations under the License. import * as pgPromise from "pg-promise"; import { Log } from "../log"; import { IDatabaseConnector, ISqlCommandParameters, ISqlRow } from "./connector"; -const log = new Log("SQLite3"); +const log = new Log("Postgres"); const pgp: pgPromise.IMain = pgPromise({ // Initialization Options -- GitLab