diff options
author | Thomas Haller <thaller@redhat.com> | 2014-03-11 19:21:23 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2014-08-01 19:06:25 +0200 |
commit | ff6946a19357aad02c4fdc02b938d8269b745a1a (patch) | |
tree | 8def2a8231fb2b552a9f655e918a937f3626161a /src/nm-logging.c | |
parent | f6882496e3a9061966423d0c5a54d7a222e9b1c2 (diff) | |
download | NetworkManager-ff6946a19357aad02c4fdc02b938d8269b745a1a.tar.gz |
core/logging: align logging after "<LEVEL>" prefix
Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'src/nm-logging.c')
-rw-r--r-- | src/nm-logging.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nm-logging.c b/src/nm-logging.c index 8bed5800f1..1a406625ce 100644 --- a/src/nm-logging.c +++ b/src/nm-logging.c @@ -397,12 +397,12 @@ _nm_log (const char *loc, case LOGL_INFO: syslog_level = LOG_INFO; g_log_level = G_LOG_LEVEL_MESSAGE; - fullmsg = g_strconcat ("<info> ", msg, NULL); + fullmsg = g_strconcat ("<info> ", msg, NULL); break; case LOGL_WARN: syslog_level = LOG_WARNING; g_log_level = G_LOG_LEVEL_WARNING; - fullmsg = g_strconcat ("<warn> ", msg, NULL); + fullmsg = g_strconcat ("<warn> ", msg, NULL); break; case LOGL_ERR: syslog_level = LOG_ERR; |