nestjs-sentry
nestjs-sentry copied to clipboard
How can we disable "Info" messages by default?
I am seeing a lot if not-needed info messages in Sentry:
@ntegral/nestjs-sentry: Nest application successfully started
How can this be disabled?
I tried configuring both level
as well as logLevel
but they seem not to change anything.
Can also confirm that logLevels: ['error'],
doesn't do anything either.
Tried this with no luck:
logLevels: [
Severity.Fatal,
Severity.Critical,
Severity.Error,
Severity.Warning,
] as LogLevel[]
Looks like I'll have to go this route for now: https://github.com/ntegral/nestjs-sentry/pull/42#issuecomment-1021257277