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

Add lvlNotice log level

This is like syslog's LOG_NOTICE: "normal, but significant,
condition".
This commit is contained in:
Eelco Dolstra 2020-11-27 11:19:36 +01:00
parent 29fbc3cf31
commit a8f533b664
3 changed files with 3 additions and 1 deletions

View file

@ -198,6 +198,7 @@ extern Verbosity verbosity; /* suppress msgs > this */
} while (0)
#define printError(args...) printMsg(lvlError, args)
#define notice(args...) printMsg(lvlNotice, args)
#define printInfo(args...) printMsg(lvlInfo, args)
#define printTalkative(args...) printMsg(lvlTalkative, args)
#define debug(args...) printMsg(lvlDebug, args)