aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-06-02 12:46:39 +0000
committerFuwn <[email protected]>2025-06-02 12:46:39 +0000
commite3fd5a1c2d1e6a46e6493d085907100739fc7409 (patch)
treead4bd399743651601373fa404d6e69b389158c5c /src/main.rs
parentchore: Bump version patch (diff)
downloadseptember-e3fd5a1c2d1e6a46e6493d085907100739fc7409.tar.xz
september-e3fd5a1c2d1e6a46e6493d085907100739fc7409.zip
deps: Bump compatible dependencies
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 9fe7910..b7e3129 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -35,7 +35,7 @@ async fn main() -> std::io::Result<()> {
var("PORT").map_or(80, |port| match port.parse::<_>() {
Ok(port) => port,
Err(e) => {
- warn!("could not use PORT from environment variables: {}", e);
+ warn!("could not use PORT from environment variables: {e}");
warn!("proceeding with default port: 80");
80