Skip to content

Commit

Permalink
make error logging lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
arlyon committed Feb 9, 2024
1 parent d9639a4 commit e82478c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/run/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ impl TaskCache {
if let Err(err) = notify_result {
telemetry.track_error(TrackedErrors::DaemonFailedToMarkOutputsAsCached);
let task_id = &self.task_id;
debug!("Failed to mark outputs as cached for {task_id}: {err}");
debug!("failed to mark outputs as cached for {task_id}: {err}");
}
}

Expand Down

0 comments on commit e82478c

Please sign in to comment.