RIC:1060: Change in PTL
[ric-plt/sdl.git] / src / createlogger.cpp
1 /*
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
17 /*
18  * This source code is part of the near-RT RIC (RAN Intelligent Controller)
19  * platform project (RICP).
20 */
21
22 #include "config.h"
23 #include <memory>
24 #include <ostream>
25 #include <string>
26 #include "private/createlogger.hpp"
27 #include "private/stdstreamlogger.hpp"
28 #if HAVE_SYSTEMLOGGER
29 #include "private/systemlogger.hpp"
30 #endif
31
32 using namespace shareddatalayer;
33
34 std::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
39     return std::shared_ptr<Logger>(new StdStreamLogger(prefix));
40 #endif
41 }
42
43 void shareddatalayer::logDebugOnce(const std::string& msg) noexcept
44 {
45     auto logger(createLogger(SDL_LOG_PREFIX));
46     logger->debug() << msg << std::endl;
47 }
48
49 void shareddatalayer::logErrorOnce(const std::string& msg) noexcept
50 {
51     auto logger(createLogger(SDL_LOG_PREFIX));
52     logger->error() << msg << std::endl;
53 }
54
55 void shareddatalayer::logInfoOnce(const std::string& msg) noexcept
56 {
57     auto logger(createLogger(SDL_LOG_PREFIX));
58     logger->info() << msg << std::endl;
59 }