We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd607a commit e453ed1Copy full SHA for e453ed1
README.md
@@ -377,7 +377,7 @@ using HTTP
377
378
transformer_logger(global_logger()) do log
379
# HTTP.jl utilizes internal modules so call parentmodule(...)
380
- if parentmodule(log._module) === HTTP && log.level === Logging.Debug
+ if (log._module === HTTP || parentmodule(log._module) === HTTP) && log.level === Logging.Debug
381
# Merge can be used to construct a new NamedTuple
382
# which effectively is the overwriting of fields of a NamedTuple
383
return merge(log, (; level=Logging.Info))
0 commit comments