-
Notifications
You must be signed in to change notification settings - Fork 971
New issue
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
[backend] Fix auth0 provider for env variable (#9554) #9557
Conversation
@@ -253,8 +253,8 @@ export const logApp = { | |||
if (appLogTransports.length > 0 && appLogger.isLevelEnabled(level)) { | |||
const data = addBasicMetaInformation(LOG_APP, error, { ...meta, source: 'backend' }); | |||
// Prevent meta information to be too massive. | |||
const limitedData = limitMetaErrorComplexity(data); | |||
appLogger.log(level, message, limitedData); | |||
// const limitedData = limitMetaErrorComplexity(data); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this ? if necessary to keep, please add a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seen with Angelique, its a problem i need to fix on my side
Ci build failing for a failed test @richard-julien
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #9557 +/- ##
==========================================
+ Coverage 65.13% 65.15% +0.01%
==========================================
Files 630 630
Lines 60147 60159 +12
Branches 6703 6708 +5
==========================================
+ Hits 39179 39194 +15
+ Misses 20968 20965 -3 ☔ View full report in Codecov by Sentry. |
Proposed changes
Related issues
Checklist
Further comments