Add standard stream logger
[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 #include "config.h"
18 #include <memory>
19 #include <ostream>
20 #include <string>
21 #include "private/createlogger.hpp"
22 #include "private/stdstreamlogger.hpp"
23 #if HAVE_SYSTEMLOGGER
24 #include "private/systemlogger.hpp"
25 #endif
26
27 using namespace shareddatalayer;
28
29 std::shared_ptr<Logger> shareddatalayer::createLogger(const std::string& prefix)
30 {
31 #if HAVE_SYSTEMLOGGER
32     return std::shared_ptr<Logger>(new SystemLogger(prefix));
33 #else
34     return std::shared_ptr<Logger>(new StdStreamLogger(prefix));
35 #endif
36 }
37
38 void shareddatalayer::logDebugOnce(const std::string& msg) noexcept
39 {
40     auto logger(createLogger(SDL_LOG_PREFIX));
41     logger->debug() << msg << std::endl;
42 }
43
44 void shareddatalayer::logErrorOnce(const std::string& msg) noexcept
45 {
46     auto logger(createLogger(SDL_LOG_PREFIX));
47     logger->error() << msg << std::endl;
48 }
49
50 void shareddatalayer::logInfoOnce(const std::string& msg) noexcept
51 {
52     auto logger(createLogger(SDL_LOG_PREFIX));
53     logger->info() << msg << std::endl;
54 }