HLCC Documentation 2.2.0
Loading...
Searching...
No Matches
logger.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2020-2025 European Southern Observatory (ESO)
2//
3// SPDX-License-Identifier: LGPL-3.0-only
4
14#ifndef HLCC_LSVSIM_LOGGER_HPP
15#define HLCC_LSVSIM_LOGGER_HPP
16
17#include <rad/logger.hpp>
18
19
20namespace hlcc::lsvsim {
21
22// TODO: Application logger name should reflect application (instance) name from 'proc-name' option.
23// See https://jira.eso.org/browse/ECII-516 about log record fields.
24const std::string LOGGER_NAME = "lsvsim";
25
26log4cplus::Logger& GetLogger();
27
28} // namespace hlcc::lsvsim
29
30
31#endif // HLCC_LSVSIM_LOGGER_HPP
Definition actionMgr.cpp:30
log4cplus::Logger & GetLogger()
Definition logger.cpp:21
const std::string LOGGER_NAME
Definition logger.hpp:24