blob: a4ae313611b70f84caea81ef6305b217f6874343 [file] [log] [blame]
Rolf Badorekef2bf512019-08-20 11:17:15 +03001/*
2 Copyright (c) 2018-2019 Nokia.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15*/
16
Timo Tietavainena0745d22019-11-28 09:55:22 +020017/*
18 * This source code is part of the near-RT RIC (RAN Intelligent Controller)
19 * platform project (RICP).
20*/
21
Rolf Badorekef2bf512019-08-20 11:17:15 +030022#include "config.h"
23#include <memory>
Rolf Badorek65fb3b12019-10-02 17:22:45 +030024#include <ostream>
Rolf Badorekef2bf512019-08-20 11:17:15 +030025#include <string>
26#include "private/createlogger.hpp"
Rolf Badorek65fb3b12019-10-02 17:22:45 +030027#include "private/stdstreamlogger.hpp"
Rolf Badorekef2bf512019-08-20 11:17:15 +030028#if HAVE_SYSTEMLOGGER
29#include "private/systemlogger.hpp"
30#endif
31
32using namespace shareddatalayer;
33
34std::shared_ptr<Logger> shareddatalayer::createLogger(const std::string& prefix)
35{
36#if HAVE_SYSTEMLOGGER
37 return std::shared_ptr<Logger>(new SystemLogger(prefix));
38#else
Rolf Badorek65fb3b12019-10-02 17:22:45 +030039 return std::shared_ptr<Logger>(new StdStreamLogger(prefix));
Rolf Badorekef2bf512019-08-20 11:17:15 +030040#endif
41}
42
43void shareddatalayer::logDebugOnce(const std::string& msg) noexcept
44{
45 auto logger(createLogger(SDL_LOG_PREFIX));
Rolf Badorek65fb3b12019-10-02 17:22:45 +030046 logger->debug() << msg << std::endl;
Rolf Badorekef2bf512019-08-20 11:17:15 +030047}
48
49void shareddatalayer::logErrorOnce(const std::string& msg) noexcept
50{
51 auto logger(createLogger(SDL_LOG_PREFIX));
Rolf Badorek65fb3b12019-10-02 17:22:45 +030052 logger->error() << msg << std::endl;
Rolf Badorekef2bf512019-08-20 11:17:15 +030053}
54
55void shareddatalayer::logInfoOnce(const std::string& msg) noexcept
56{
57 auto logger(createLogger(SDL_LOG_PREFIX));
Rolf Badorek65fb3b12019-10-02 17:22:45 +030058 logger->info() << msg << std::endl;
Rolf Badorekef2bf512019-08-20 11:17:15 +030059}