You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a Python Lambda project I have added the LoggingIntegration and that has allowed to me configure the event level to NOT create new issues on logs with error level, just on Exceptions.
LoggingIntegration(
level=logging.INFO, # Capture info and above as breadcrumbsevent_level=logging.CRITICAL, # Send records as events
)
Is there a way to achieve that for a NestJS project? I have been digging into the documentation but seems like the features changes from integration to integration and I haven't found how to adjust this.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello:
In a Python Lambda project I have added the
LoggingIntegration
and that has allowed to me configure the event level to NOT create new issues on logs witherror
level, just on Exceptions.Is there a way to achieve that for a NestJS project? I have been digging into the documentation but seems like the features changes from integration to integration and I haven't found how to adjust this.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions