···3535 var("PORT").map_or(80, |port| match port.parse::<_>() {
3636 Ok(port) => port,
3737 Err(e) => {
3838- warn!("could not use PORT from environment variables: {}", e);
3838+ warn!("could not use PORT from environment variables: {e}");
3939 warn!("proceeding with default port: 80");
40404141 80