1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-17 13:46:47 +02:00

chore: decrease ui observability to warn (#9658)

These errors are not acted upon and is not something we can act on.
Reducing it's level to WARN following
https://github.com/Unleash/unleash/blob/main/website/docs/contributing/ADRs/overarching/logging-levels.md
This commit is contained in:
Gastón Fournier 2025-03-31 16:02:28 +02:00 committed by GitHub
parent 89f63285a0
commit ef1b6ec227
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ export class UiObservabilityController extends Controller {
}
async recordUiError(req: Request, res: Response): Promise<void> {
this.logger.error(
this.logger.warn(
`UI Observability Error: ${req.body.errorMessage}`,
req.body.errorStack,
);