We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 06f3297 + 56aa415 commit 4781c6aCopy full SHA for 4781c6a
lldb/source/Host/common/Host.cpp
@@ -93,9 +93,8 @@ using namespace lldb_private;
93
#include <syslog.h>
94
void Host::SystemLog(Severity severity, llvm::StringRef message) {
95
static llvm::once_flag g_openlog_once;
96
- llvm::call_once(g_openlog_once, [] {
97
- openlog("lldb", LOG_CONS | LOG_PID | LOG_NDELAY, LOG_USER);
98
- });
+ llvm::call_once(g_openlog_once,
+ [] { openlog("lldb", LOG_PID | LOG_NDELAY, LOG_USER); });
99
int level = LOG_DEBUG;
100
switch (severity) {
101
case lldb::eSeverityInfo:
0 commit comments