diff options
Diffstat (limited to 'src')
| -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 |