PDI 1.0.1

Data exchange made easy

logger.h
1 /*******************************************************************************
2  * Copyright (C) 2018-2021 Institute of Bioorganic Chemistry Polish Academy of Science (PSNC)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of CEA nor the names of its contributors may be used to
13  * endorse or promote products derived from this software without specific
14  * prior written permission.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  ******************************************************************************/
24 
25 #ifndef PDI_LOGGER_H_
26 #define PDI_LOGGER_H_
27 
28 #include <string>
29 #include <spdlog/spdlog.h>
30 
31 #include <pdi/pdi_fwd.h>
32 #include <pdi/paraconf_wrapper.h>
33 
34 namespace PDI {
35 
44 Logger_sptr PDI_EXPORT configure_logger(PC_tree_t config,
45  const std::string& name,
46  spdlog::level::level_enum level = spdlog::level::info);
47 
48 } // namespace PDI
49 
50 #endif // PDI_LOGGER_H_
std::shared_ptr< spdlog::logger > Logger_sptr
A shared pointer to a logger instance.
Definition: pdi_fwd.h:83
Logger_sptr configure_logger(PC_tree_t config, const std::string &name, spdlog::level::level_enum level=spdlog::level::info)
Reads configuration tree and sets up the logger.
Definition: array_datatype.h:37