From e86c12e4ced6ee2f55272eb25536ce4a0402af77 Mon Sep 17 00:00:00 2001 From: Jacob Quinn Date: Wed, 6 Sep 2023 09:48:55 -0600 Subject: [PATCH] Cleanup logs --- src/rest.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rest.jl b/src/rest.jl index fc21327..d283311 100644 --- a/src/rest.jl +++ b/src/rest.jl @@ -187,8 +187,8 @@ function request( isnothing(body) && (body = UInt8[]) headers = _ensure_headers(headers) _authenticate!(ctx, headers) - opts = (;redirect = false, pool = POOL, verbose=3) - @info "HTTP.request" method url opts kw + opts = (;redirect = false, pool = POOL, verbose=2) + @info "HTTP.request" method url r = Base.with_logger(Logging.ConsoleLogger(stderr, Logging.Debug)) do HTTP.request(method, url, headers; query = query, body = body, opts..., kw...) end