mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-10 07:00:21 +01:00
logging: fix log level flag values (LOGL_*)
0x00000000 caused that ERR level (nm_log_err()) gets never logged.
This commit is contained in:
parent
ab529302a7
commit
9b9331f53d
1 changed files with 4 additions and 4 deletions
|
|
@ -57,10 +57,10 @@ enum {
|
|||
|
||||
/* Log levels */
|
||||
enum {
|
||||
LOGL_ERR = 0x00000000,
|
||||
LOGL_WARN = 0x00000001,
|
||||
LOGL_INFO = 0x00000002,
|
||||
LOGL_DEBUG = 0x00000004
|
||||
LOGL_ERR = 0x00000001,
|
||||
LOGL_WARN = 0x00000002,
|
||||
LOGL_INFO = 0x00000004,
|
||||
LOGL_DEBUG = 0x00000008
|
||||
};
|
||||
|
||||
#define NM_LOGGING_ERROR (nm_logging_error_quark ())
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue