Merged in feature/wrap-logging (pull request #2511)

Feature/wrap logging

* feat: change all logging to go through our own logger function so that we can control log levels

* move packages/trpc to using our own logger

* merge


Approved-by: Linus Flood
This commit is contained in:
Joakim Jäderberg
2025-07-03 12:37:04 +00:00
parent 7e32ed294d
commit daf765f3d5
110 changed files with 681 additions and 441 deletions

View File

@@ -1,5 +1,6 @@
import { type NextMiddleware, NextResponse } from "next/server"
import { logger } from "@scandic-hotels/common/logger"
import { findLang } from "@scandic-hotels/common/utils/languages"
import { resolve as resolveEntry } from "@scandic-hotels/trpc/utils/entry"
@@ -92,7 +93,7 @@ export const middleware: NextMiddleware = async (request) => {
// Authorization header is required for webviews
// It should be base64 encoded
if (!authorizationToken) {
console.error("Authorization header is missing")
logger.error("Authorization header is missing")
return badRequest("Authorization header is missing")
}
@@ -100,7 +101,7 @@ export const middleware: NextMiddleware = async (request) => {
// It should be base64 encoded
const initializationVector = request.headers.get("X-AES-IV")!
if (!initializationVector) {
console.error("initializationVector header is missing")
logger.error("initializationVector header is missing")
return badRequest("initializationVector header is missing")
}
@@ -121,8 +122,7 @@ export const middleware: NextMiddleware = async (request) => {
})
} catch (e) {
if (e instanceof Error) {
console.error("Error in webView middleware")
console.error(`${e.name}: ${e.message}`)
logger.error(`Error in webView middleware - ${e.name}: ${e.message}`)
}
return badRequest()