summaryrefslogtreecommitdiff
path: root/src/CommonAPI/Logger.cpp
blob: c3f9213f17940970b1a3ee06d7213f7ae68d69a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2015 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <CommonAPI/Logger.hpp>
#include <CommonAPI/Runtime.hpp>

namespace CommonAPI {;
void
  Logger::init(bool _useConsole, const std::string &_fileName, bool _useDlt, const std::string &_level) {
  LoggerImpl::init(_useConsole, _fileName, _useDlt, _level);
}

} //namespace CommonAPI