change color of ltcc diagnostic message to yellow

This commit is contained in:
Michael Sippel 2024-10-01 15:48:07 +02:00
parent 70e5ef734c
commit ce3967c2de
Signed by: senvas
GPG key ID: F96CF119C34B64A6

View file

@ -71,7 +71,7 @@ pub fn print_diagnostic(
for _ in column_begin..column_end { print!("{}", "^".magenta().bold()); }
print!("\n");
print!("{} [{}-{}]: {}\n", "error".bright_red(), column_begin, column_end, message.white());
print!("{} [{}-{}]: {}\n", "error".bright_red(), column_begin, column_end, message.yellow());
}
else if next_lines > 0 {
next_lines -= 1;