-
Notifications
You must be signed in to change notification settings - Fork 541
Add the stack option back to the Logging integration #176
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #176 +/- ##
==========================================
- Coverage 80.89% 80.51% -0.38%
==========================================
Files 29 29
Lines 2392 2397 +5
Branches 402 403 +1
==========================================
- Hits 1935 1930 -5
- Misses 302 312 +10
Partials 155 155
Continue to review full report at Codecov.
|
@jrideout thanks! I believe we want to somehow expose this on the scope instead of having special options on the logger though. That approach did not scale well in Raven. |
@untitaker Can you please describe what you mean by For some context, we've configured our lambda based apps to use:
Which is probably sending way too much. I was hoping to turn off |
@jrideout we have these scopes to override default values:
I wonder whether we can use scopes here too:
I realize this is not optimal but I want to get rid of the weird arguments on logging calls |
What about using |
I like that idea, not sure if we have this info. @mitsuhiko what do you think? |
b20bd82
to
7d5b576
Compare
7d5b576
to
d42a501
Compare
@untitaker looks like we do have the full record in the handler. The logging system converts |
Ah yes, the |
@jrideout thanks for your work. Please allow me some time to think it through. I think we're good though |
Let's keep this open, I will check it out tomorrow |
oops, I don't know how I closed this, I didn't mean too! |
Thanks! |
In Raven, you could do this:
And the stack would be collected. This adds back that feature.