aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Logging.hpp
blob: 5669fcaebf8ba1eaae31f5b0f0b0765319f415ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);

}