diff options
| author | Fuwn <[email protected]> | 2025-06-02 12:46:39 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-02 12:46:39 +0000 |
| commit | 50b92f928bc0f2ce1fa68f3c4de90a71d29ca99b (patch) | |
| tree | ad4bd399743651601373fa404d6e69b389158c5c /src/main.rs | |
| parent | chore: Bump version patch (diff) | |
| download | september-50b92f928bc0f2ce1fa68f3c4de90a71d29ca99b.tar.xz september-50b92f928bc0f2ce1fa68f3c4de90a71d29ca99b.zip | |
deps: Bump compatible dependencies
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
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 |