Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): add carraige return after cache log messages #8015

Merged
merged 3 commits into from
Apr 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions crates/turborepo-lib/src/run/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ impl TaskCache {
fallible_write(
&mut terminal_output,
&format!(
"cache miss, executing {}\n",
"cache miss, executing {}\r\n",
color!(self.ui, GREY, "{}", self.hash)
),
);
Expand Down Expand Up @@ -195,7 +195,7 @@ impl TaskCache {
fallible_write(
&mut terminal_output,
&format!(
"cache bypass, force executing {}\n",
"cache bypass, force executing {}\r\n",
color!(self.ui, GREY, "{}", self.hash)
),
);
Expand Down Expand Up @@ -246,7 +246,7 @@ impl TaskCache {
fallible_write(
&mut terminal_output,
&format!(
"cache miss, executing {}\n",
"cache miss, executing {}\r\n",
color!(self.ui, GREY, "{}", self.hash)
),
);
Expand Down Expand Up @@ -297,7 +297,7 @@ impl TaskCache {
fallible_write(
&mut terminal_output,
&format!(
"cache hit{}, suppressing logs {}\n",
"cache hit{}, suppressing logs {}\r\n",
more_context,
color!(self.ui, GREY, "{}", self.hash)
),
Expand All @@ -308,7 +308,7 @@ impl TaskCache {
fallible_write(
&mut terminal_output,
&format!(
"cache hit{}, replaying logs {}\n",
"cache hit{}, replaying logs {}\r\n",
more_context,
color!(self.ui, GREY, "{}", self.hash)
),
Expand Down
Loading