blob: db60d389f62e8deeb1e5224442e6dce7f3ff58e8 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5#pragma once
6
7
8#include "armnn/Utils.hpp"
9
10#include <boost/log/trivial.hpp>
11
12namespace armnnUtils
13{
14
15// Configures logging for the given Boost Log Core object.
16void ConfigureLogging(boost::log::core* core,
17 bool printToStandardOutput,
18 bool printToDebugOutput,
19 armnn::LogSeverity severity);
20
21}