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
commitc92456e34fa7c327e1e067afb1faf01e2c1516ac (patch)
treead4bd399743651601373fa404d6e69b389158c5c /src/main.rs
parentchore: Bump version patch (diff)
downloadseptember-c92456e34fa7c327e1e067afb1faf01e2c1516ac.tar.xz
september-c92456e34fa7c327e1e067afb1faf01e2c1516ac.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