1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 16:51:15 +02:00

ANSI_YELLOW -> ANSI_WARNING

This commit is contained in:
Eelco Dolstra 2021-09-14 10:38:10 +02:00
parent 9bfdd556cf
commit 4ffda0af7c
7 changed files with 13 additions and 13 deletions

View file

@ -27,7 +27,7 @@ Logger * logger = makeSimpleLogger(true);
void Logger::warn(const std::string & msg)
{
log(lvlWarn, ANSI_YELLOW "warning:" ANSI_NORMAL " " + msg);
log(lvlWarn, ANSI_WARNING "warning:" ANSI_NORMAL " " + msg);
}
void Logger::writeToStdout(std::string_view s)