aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Logging.hpp
blob: db60d389f62e8deeb1e5224442e6dce7f3ff58e8 (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.
// SPDX-License-Identifier: MIT
//
#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);

}