From 427866ab700868478517559e6137304bb302502e Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 02:43:47 +0000 Subject: [PATCH 1/2] Improve redirect status code logging readability Changed the redirect status code logging in `src/main.rs` to use the `StatusCode`'s `Display` implementation instead of explicitly calling `.as_u16()`. This provides a more descriptive log message that includes both the numeric code and its canonical reason phrase (e.g., "308 Permanent Redirect" instead of "308"). Co-authored-by: ToolchainLab <263750431+ToolchainLab@users.noreply.github.com> From 64e59afa273b3d30e7a1a757a17b14392bd19a1e Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 02:53:38 +0000 Subject: [PATCH 2/2] Improve redirect status code logging readability Changed the redirect status code logging in `src/main.rs` to use the `StatusCode`'s `Display` implementation instead of explicitly calling `.as_u16()`. This provides a more descriptive log message that includes both the numeric code and its canonical reason phrase (e.g., "308 Permanent Redirect" instead of "308"). Co-authored-by: ToolchainLab <263750431+ToolchainLab@users.noreply.github.com>