aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Logging.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnUtils/Logging.hpp')
-rw-r--r--src/armnnUtils/Logging.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/armnnUtils/Logging.hpp b/src/armnnUtils/Logging.hpp
new file mode 100644
index 0000000000..5669fcaebf
--- /dev/null
+++ b/src/armnnUtils/Logging.hpp
@@ -0,0 +1,21 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+
+#include "armnn/Utils.hpp"
+
+#include <boost/log/trivial.hpp>
+
+namespace armnnUtils
+{
+
+// Configures logging for the given Boost Log Core object.
+void ConfigureLogging(boost::log::core* core,
+ bool printToStandardOutput,
+ bool printToDebugOutput,
+ armnn::LogSeverity severity);
+
+} \ No newline at end of file