diff options
Diffstat (limited to 'src/app.ts')
-rw-r--r-- | src/app.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/app.ts b/src/app.ts index a3c1c2f..6cc6520 100644 --- a/src/app.ts +++ b/src/app.ts @@ -8,10 +8,10 @@ import log from "loglevel"; import config from "./config"; -log.setLevel((import.meta.env.LOG_LEVEL || "info") as log.LogLevelDesc); +log.setLevel((import.meta.env["LOG_LEVEL"] || "info") as log.LogLevelDesc); Sentry.init({ - release: `homestead@${import.meta.env.FLY_MACHINE_VERSION}`, + release: `homestead@${import.meta.env["FLY_MACHINE_VERSION"]}`, tracesSampleRate: 1.0, }); @@ -65,7 +65,7 @@ function registerFile( pathname = "/" + (pathname === "." || pathname === "./" ? "" : pathname); if (files.get(pathname) !== undefined) { - console.warn("File already registered:", pathname); + log.warn("File already registered:", pathname); } const handle = Bun.file(filename); files.set(pathname, { @@ -280,13 +280,13 @@ export const server = { content_encoding: "identity", }); Sentry.captureException(error); - console.error("Error", error); + log.error("Error", error); return new Response("Something went wrong", { status: status }); } finally { const seconds = endTimer(); metrics.requestDuration.observe(seconds); transaction.finish(); - console.info( + log.info( request.method, status, hostname, |