We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LogLevel is not exported from the @sentry/types. You have to update it like this:
LogLevel
@sentry/types
import { Module } from '@nestjs-common'; import { SentryModule } from '@ntegral/nestjs-sentry'; @Module({ imports: [ SentryModule.forRoot({ dsn: 'sentry_io_dsn', debug: true, // boolean environment: 'dev', // | 'production' | 'some_environment' release: 'some_release', // | | null must create a release in sentry.io dashboard logLevel: ['verbose', 'debug'] //based on sentry.io loglevel }), ], }) export class AppModule {}
The text was updated successfully, but these errors were encountered:
For me using i.e: logLevels** instead of logLevel worked. Can it be a typo?
Sorry, something went wrong.
No branches or pull requests
LogLevel
is not exported from the@sentry/types
. You have to update it like this:The text was updated successfully, but these errors were encountered: