1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-03 22:26:30 +02:00

We do not need remote syslog and syslog appenders in all modules

This commit is contained in:
Pavel Odintsov 2023-04-02 19:40:02 +01:00
parent e376abaeed
commit 749646cabb
3 changed files with 7 additions and 2 deletions

View File

@ -52,6 +52,10 @@ jobs:
name: Run cmake
shell: << parameters.default_shell >>
command: cmake -DENABLE_MONGODB_SUPPORT=FALSE -S src -B src/build
- run:
name: Build
shell: << parameters.default_shell >>
command: cd src/build && ninja
build_macos:
macos:
xcode: 13.2.1

View File

@ -11,8 +11,6 @@
#include <log4cpp/OstreamAppender.hh>
#include <log4cpp/PatternLayout.hh>
#include <log4cpp/Priority.hh>
#include <log4cpp/RemoteSyslogAppender.hh>
#include <log4cpp/SyslogAppender.hh>
#ifdef __GNUC__
#pragma GCC diagnostic pop

View File

@ -94,6 +94,9 @@
#include "all_logcpp_libraries.hpp"
#include <log4cpp/RemoteSyslogAppender.hh>
#include <log4cpp/SyslogAppender.hh>
// Boost libs
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/trim.hpp>