mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
refactor: Change LogPrintLevel order to category, severity
This is more consistent with the other functions, as well as with the logging output itself. If we want to make this change, we should do it before it's all over the place.
This commit is contained in:
parent
ce920713bf
commit
c4e7717727
5 changed files with 14 additions and 14 deletions
|
|
@ -359,7 +359,7 @@ static void libevent_log_cb(int severity, const char *msg)
|
|||
level = BCLog::Level::Error;
|
||||
break;
|
||||
}
|
||||
LogPrintLevel(level, BCLog::LIBEVENT, "%s\n", msg);
|
||||
LogPrintLevel(BCLog::LIBEVENT, level, "%s\n", msg);
|
||||
}
|
||||
|
||||
bool InitHTTPServer()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue