projects
/
platform
/
upstream
/
dbus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d82378f
)
unix: Reduce log level for DBUS_SYSTEM_LOG_INFO to LOG_INFO
author
Simon McVittie
<smcv@debian.org>
Fri, 22 Sep 2017 20:09:51 +0000
(21:09 +0100)
committer
Simon McVittie
<smcv@debian.org>
Mon, 25 Sep 2017 12:29:18 +0000
(13:29 +0100)
This is a better match for the way we use it in practice.
Signed-off-by: Simon McVittie <smcv@debian.org>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=102686
Reviewed-by: Philip Withnall <withnall@endlessm.com>
dbus/dbus-sysdeps-unix.c
patch
|
blob
|
history
diff --git
a/dbus/dbus-sysdeps-unix.c
b/dbus/dbus-sysdeps-unix.c
index
c1c35f8
..
ea1a4b7
100644
(file)
--- a/
dbus/dbus-sysdeps-unix.c
+++ b/
dbus/dbus-sysdeps-unix.c
@@
-4630,7
+4630,7
@@
_dbus_logv (DBusSystemLogSeverity severity,
switch (severity)
{
case DBUS_SYSTEM_LOG_INFO:
- flags = LOG_DAEMON | LOG_
NOTICE
;
+ flags = LOG_DAEMON | LOG_
INFO
;
break;
case DBUS_SYSTEM_LOG_WARNING:
flags = LOG_DAEMON | LOG_WARNING;