Merge branch '2.2' into develop

This commit is contained in:
Johan Wikman
2018-04-24 11:02:02 +03:00
6 changed files with 57 additions and 5 deletions

View File

@ -896,11 +896,12 @@ static int logmanager_write_log(int priority,
case LOG_ERR:
case LOG_WARNING:
case LOG_NOTICE:
case LOG_INFO:
syslog(priority, "%s", message);
break;
default:
// LOG_INFO and LOG_DEBUG messages are never written to syslog.
// LOG_DEBUG messages are never written to syslog.
break;
}
}