summaryrefslogtreecommitdiff
path: root/include/logger/LogSink.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/logger/LogSink.hpp')
-rwxr-xr-xinclude/logger/LogSink.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/logger/LogSink.hpp b/include/logger/LogSink.hpp
index 4d07df0..06113f9 100755
--- a/include/logger/LogSink.hpp
+++ b/include/logger/LogSink.hpp
@@ -1,7 +1,7 @@
#ifndef __LOGSINK_H
#define __LOGSINK_H
-#include "Exportable.hpp"
+#include "LoggerExportable.hpp"
#include "Logger.hpp"
class LogSink
@@ -11,7 +11,7 @@ class LogSink
virtual ~LogSink( ) { }
- DLL_VISIBLE virtual void log( const LogLevel level, const std::string &msg ) = 0;
+ LOGGER_DLL_VISIBLE virtual void log( const LogLevel level, const std::string &msg ) = 0;
void setReportingLevel( const LogLevel level ) { m_level = level; }