diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-11-27 11:19:36 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-12-10 16:41:24 +0100 |
commit | a8f533b66417a1025a468cae3068bd2f5c06e811 (patch) | |
tree | b37fc184dc14fe435ee1e467ac8df586e99b5e81 /src/libutil/error.hh | |
parent | 29fbc3cf31cb318931893b2113b6e394137ec153 (diff) |
Add lvlNotice log level
This is like syslog's LOG_NOTICE: "normal, but significant,
condition".
Diffstat (limited to 'src/libutil/error.hh')
-rw-r--r-- | src/libutil/error.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/error.hh b/src/libutil/error.hh index d1b6d82bb..aa4fadfcc 100644 --- a/src/libutil/error.hh +++ b/src/libutil/error.hh @@ -45,6 +45,7 @@ namespace nix { typedef enum { lvlError = 0, lvlWarn, + lvlNotice, lvlInfo, lvlTalkative, lvlChatty, |