Skip to content

Commit f50170f

Browse files
committed
Make the logging of the request passport debug level
Logging it as info level along with the request is too noisy.
1 parent 674a327 commit f50170f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: src/http.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,7 @@ pub async fn actor(
240240
response.status_code().0,
241241
response.len(),
242242
);
243-
// Log the request passport to standard error.
244-
info!("request passport: {}", request.passport);
243+
debug!("request passport: {}", request.passport);
245244

246245
// In cases were we don't/can't read the (entire) body we need to close
247246
// the connection.

0 commit comments

Comments
 (0)