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