summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2021-06-13 00:53:12 +0200
committerMarcus Müller <marcus@hostalia.de>2021-06-17 00:08:24 +0200
commita231df45e7bea4d05df96a2e9b4e8165f21b4e1d (patch)
treecf574f1b2349863132d412d4f35137e020d35c11 /gnuradio-runtime/lib
parent72ba8b148d550dc012f98feb222b2a5371fbf89d (diff)
logger: move non-interface includes to buffer.cc
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gnuradio-runtime/lib')
-rw-r--r--gnuradio-runtime/lib/logger.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/logger.cc b/gnuradio-runtime/lib/logger.cc
index ee3bc28e71..ea3febfc34 100644
--- a/gnuradio-runtime/lib/logger.cc
+++ b/gnuradio-runtime/lib/logger.cc
@@ -19,8 +19,18 @@
#endif
#include <gnuradio/logger.h>
+
#include <gnuradio/prefs.h>
+
+#include <log4cpp/FileAppender.hh>
+#include <log4cpp/OstreamAppender.hh>
+#include <log4cpp/PatternLayout.hh>
+#include <log4cpp/PropertyConfigurator.hh>
+#include <log4cpp/RollingFileAppender.hh>
+#include <boost/thread.hpp>
+
#include <algorithm>
+#include <filesystem>
#include <iostream>
#include <memory>
#include <stdexcept>