Skip to content

Commit

Permalink
Use full path for log::error on windows
Browse files Browse the repository at this point in the history
Signed-off-by: Lee Smet <lee.smet@hotmail.com>
  • Loading branch information
LeeSmet committed Jan 31, 2024
1 parent c7b35e5 commit 34f158f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
{
let _ = Stack::new(config).await?;
if let Err(e) = tokio::signal::ctrl_c().await {
error!("Failed to wait for SIGINT: {e}");
log::error!("Failed to wait for SIGINT: {e}");
}
}

Expand Down

0 comments on commit 34f158f

Please sign in to comment.