chore: Remove query logging in test env

This commit is contained in:
Tom Moor
2023-01-02 21:06:21 -05:00
parent 6efcf1c1a8
commit 0d920e02b1

View File

@@ -8,6 +8,7 @@ import Sentry from "@server/logging/sentry";
import * as Tracing from "./tracer";
const isProduction = env.ENVIRONMENT === "production";
const isDev = env.ENVIRONMENT === "development";
type LogCategory =
| "lifecycle"
@@ -29,7 +30,7 @@ class Logger {
constructor() {
this.output = winston.createLogger({
level: isProduction ? "info" : "debug",
level: isDev ? "debug" : "info",
});
this.output.add(
new winston.transports.Console({