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
The documentation tells you that you can do the following to set log level:
HTTPI.log_level=:warn
The problem is that log_level does not get used anywhere. There is only one place that calls HTTPI.log and that is HTTPI.with_adapter. There log gets called with the explicit :debug level.
I see two options here:
Change HTTPI.with_adapter to rely on the configured log level
Remove log_level support and document that :default always gets used
Which way should we go?
The text was updated successfully, but these errors were encountered:
The documentation tells you that you can do the following to set log level:
The problem is that log_level does not get used anywhere. There is only one place that calls HTTPI.log and that is HTTPI.with_adapter. There log gets called with the explicit :debug level.
I see two options here:
Which way should we go?
The text was updated successfully, but these errors were encountered: