X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=bertos%2Fnet%2Fsyslog.c;fp=bertos%2Fnet%2Fsyslog.c;h=2974c47d4b8538c8f8e2a1609ac7cecc07491c3d;hb=35c39bd8f2476c58349c66d0e3fc324744b533ba;hp=0000000000000000000000000000000000000000;hpb=f43548afba315703927047d2f6ca69006963dd06;p=bertos.git diff --git a/bertos/net/syslog.c b/bertos/net/syslog.c new file mode 100644 index 00000000..2974c47d --- /dev/null +++ b/bertos/net/syslog.c @@ -0,0 +1,55 @@ +/** + * \file + * + * + * \brief SYSLOG implementation + * + * \author Daniele Basile + * + * notest:all + */ + +#include "syslog.h" + +#include "cfg/cfg_syslog.h" +#define LOG_LEVEL SYSLOG_LOG_LEVEL +#define LOG_FORMAT SYSLOG_LOG_FORMAT +#include + +/** + * Init + * + */ +int syslog_init(void) +{ + return 0; +} +