refactor: slight log message tweaking

This commit is contained in:
2025-03-06 19:02:29 -05:00
parent 9001cd9701
commit b20beb6e88
2 changed files with 3 additions and 3 deletions

View File

@@ -80,8 +80,8 @@ async fn main() -> anyhow::Result<()> {
OpenOptions::new()
.append(true)
.create(true)
.open(log_file)
.expect("log file should be accessible"),
.open(&log_file)
.expect(&(log_file + " should be accessible")),
)
.boxed()
})