Add first version
[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 <string>
20 #include "private/createlogger.hpp"
21 #if HAVE_SYSTEMLOGGER
22 #include "private/systemlogger.hpp"
23 #endif
24
25 using namespace shareddatalayer;
26
27 std::shared_ptr<Logger> shareddatalayer::createLogger(const std::string& prefix)
28 {
29 #if HAVE_SYSTEMLOGGER
30     return std::shared_ptr<Logger>(new SystemLogger(prefix));
31 #else
32 #error "Need to compile with at least one logging backend"
33 #endif
34 }
35
36 void shareddatalayer::logDebugOnce(const std::string& msg) noexcept
37 {
38     auto logger(createLogger(SDL_LOG_PREFIX));
39     logger->debug() << msg;
40 }
41
42 void shareddatalayer::logErrorOnce(const std::string& msg) noexcept
43 {
44     auto logger(createLogger(SDL_LOG_PREFIX));
45     logger->error() << msg;
46 }
47
48 void shareddatalayer::logInfoOnce(const std::string& msg) noexcept
49 {
50     auto logger(createLogger(SDL_LOG_PREFIX));
51     logger->info() << msg;
52 }