Browse Source

Simplify syslog wrapper a bit

pull/1208/head
Antonio SJ Musumeci 1 year ago
parent
commit
fa537961c5
  1. 7
      libfuse/lib/syslog.c
  2. 6
      src/syslog.cpp

7
libfuse/lib/syslog.c

@ -21,8 +21,6 @@
#include <stdbool.h> #include <stdbool.h>
static bool g_SYSLOG_ENABLED = false;
void void
syslog_open() syslog_open()
{ {
@ -31,14 +29,12 @@ syslog_open()
const int facility = LOG_USER; const int facility = LOG_USER;
openlog(ident,option,facility); openlog(ident,option,facility);
g_SYSLOG_ENABLED = true;
} }
void void
syslog_close() syslog_close()
{ {
closelog(); closelog();
g_SYSLOG_ENABLED = false;
} }
static static
@ -47,9 +43,6 @@ syslog_vlog(const int priority_,
const char *format_, const char *format_,
va_list valist_) va_list valist_)
{ {
if(g_SYSLOG_ENABLED == false)
return;
vsyslog(priority_,format_,valist_); vsyslog(priority_,format_,valist_);
} }

6
src/syslog.cpp

@ -19,7 +19,6 @@
#include <stdarg.h> #include <stdarg.h>
#include <syslog.h> #include <syslog.h>
static bool g_SYSLOG_ENABLED = false;
void void
syslog_open() syslog_open()
@ -29,14 +28,12 @@ syslog_open()
const int facility = LOG_USER; const int facility = LOG_USER;
openlog(ident,option,facility); openlog(ident,option,facility);
g_SYSLOG_ENABLED = true;
} }
void void
syslog_close() syslog_close()
{ {
closelog(); closelog();
g_SYSLOG_ENABLED = false;
} }
void void
@ -44,9 +41,6 @@ syslog_log(const int priority_,
const char *format_, const char *format_,
va_list valist_) va_list valist_)
{ {
if(g_SYSLOG_ENABLED == false)
return;
vsyslog(priority_,format_,valist_); vsyslog(priority_,format_,valist_);
} }

Loading…
Cancel
Save