-
Notifications
You must be signed in to change notification settings - Fork 20.7k
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
log: allow --vmodule to downgrade the log level #31536
base: master
Are you sure you want to change the base?
log: allow --vmodule to downgrade the log level #31536
Conversation
Benchmark:
This PR:With vmodule disabled: Master:With vmodule disabled: So it seems there's almost no performance difference between this PR and master |
The size of the map will at max be 20.000 items, (rough count of every time we call log), so |
I guess this works because the logger calls |
BTW, any reason why we are not forwarding the context parameter into the sub-logger? |
if !ok { | ||
h.siteCache[r.PC] = 0 | ||
lvl = slog.Level(h.level.Load()) | ||
h.siteCache[r.PC] = lvl |
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.
If we set vmodule GlogHandler.override
will be set, so Handle
will always be called. If the global verbosity is changed in the console after a log is emitted for the first time: next time we are about to emit that log, when we go to evaluate whether to call the underlying Handler, we will use the cached log level.
To see how this is problematic, start geth in dev mode with arbitrary vmodule and high verbosity: geth --dev --vmodule "accounts=12" --verbosity 5 console
. In the console, set the global verbosity low. Log statements from the higher verbosities will still be emitted.
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.
Added a commit to address that. It just clears the cache on setting the verbosity which will force a recalculation
This PR allows
--vmodule
to also downgrade the log level for packages. closes #30717This does have some performance implications that I'm not sure about yet
Before
After