Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/gurt/dlog.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ static const char *clog_pristr(int);
static int clog_setnfac(int);

/* static arrays for converting between pri's and strings */
static const char * const norm[] = { "DBUG", "INFO", "NOTE", "WARN", "ERR ",
"CRIT", "ALRT", "EMRG", "EMIT"};
static const char *const norm[] = { "DEBUG", "INFO ", "NOTE ", "WARN ", "ERR ",
"CRIT ", "ALRT ", "EMRG ", "EMIT "};
/**
* clog_pristr: convert priority to 4 byte symbolic name.
*
Expand Down
2 changes: 1 addition & 1 deletion src/tests/ftest/cart/util/cart_logparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class InvalidLogFile(Exception):
'WARN': 6,
'NOTE': 7,
'INFO': 8,
'DBUG': 9}
'DEBUG': 9}

# Make a reverse lookup from log level to name.
LOG_NAMES = {}
Expand Down
Loading