12#include <boost/log/attributes/clock.hpp>
13#include <boost/log/expressions/keyword.hpp>
14#include <boost/log/sinks/sync_frontend.hpp>
15#include <boost/log/sinks/text_ostream_backend.hpp>
16#include <boost/log/sources/severity_channel_logger.hpp>
17#include <boost/log/utility/manipulators/add_value.hpp>
18#include <boost/preprocessor/facilities/overload.hpp>
19#include <boost/utility/string_view.hpp>
42log_level level_from_string(std::string level);
44std::ostream& operator<<(std::ostream&,
log_level);
51using LogSource = boost::log::sources::severity_channel_logger_mt<log_level>;
72 bool operator()(
const boost::log::attribute_value_set&)
const;
134 void enable_console_logging();
135 void disable_console_logging();
141 boost::shared_ptr<boost::log::sinks::synchronous_sink<boost::log::sinks::text_ostream_backend>>
144 log_level global_level_{log_level::info};
145 log_level module_level_{log_level::info};
147 std::map<std::string, log_level> resource_levels_;
150namespace log_detail {
154boost::string_view trim_filename(
const char* file);
158BOOST_LOG_ATTRIBUTE_KEYWORD_TYPE(attr_channel,
"Channel", std::string);
160BOOST_LOG_ATTRIBUTE_KEYWORD_TYPE(attr_file,
"file", boost::string_view);
161BOOST_LOG_ATTRIBUTE_KEYWORD_TYPE(attr_line,
"line",
unsigned int);
162BOOST_LOG_ATTRIBUTE_KEYWORD_TYPE(attr_time,
164 boost::log::attributes::local_clock::value_type);
169#define VIAM_SDK_LOG_IMPL(lg, level) \
170 BOOST_LOG_SEV((lg), ::viam::sdk::log_level::level) \
171 << ::boost::log::add_value(::viam::sdk::attr_file_type{}, \
172 ::viam::sdk::log_detail::trim_filename(__FILE__)) \
173 << ::boost::log::add_value(::viam::sdk::attr_line_type{}, __LINE__)
181#define VIAM_SDK_LOG(level) VIAM_SDK_LOG_IMPL(::viam::sdk::LogManager::get().global_logger(), level)
188#define VIAM_MODULE_LOG(level) \
189 VIAM_SDK_LOG_IMPL(::viam::sdk::LogManager::get().module_logger(), level)
192#define VIAM_RESOURCE_LOG_IMPL_1(level) VIAM_RESOURCE_LOG_IMPL_2(*this, level)
195#define VIAM_RESOURCE_LOG_IMPL_2(resource, level) \
196 VIAM_SDK_LOG_IMPL(::viam::sdk::log_detail::logger_access::logger(resource), level)
207#define VIAM_RESOURCE_LOG(...) \
208 BOOST_PP_CAT(BOOST_PP_OVERLOAD(VIAM_RESOURCE_LOG_IMPL_, __VA_ARGS__)(__VA_ARGS__), \
Instance management for Viam C++ SDK applications. This is a single instance class which is responsib...
Definition instance.hpp:13
Manages the logging infrastructure in the SDDK.
Definition logging.hpp:67
static LogManager & get()
Returns the unique logger instance.
void set_module_log_level(log_level)
Set the module logger severity.
LogSource & module_logger()
Return the SDK module log source.
void set_module_name(const std::string &name)
Set the channel name of log messages to be associated with a C++ module.
void set_global_log_level(log_level)
Set the global logger severity.
void set_resource_log_level(const std::string &resource, log_level)
Set the logger severity for a resource.
LogSource & global_logger()
Return the SDK global log source.
void set_global_log_level(int argc, char **argv)
Set the global logger severity from a command line argument vector.
void set_global_resource_name(const std::string &name)
Override the channel name of general log messages not originating from resources.
gRPC client for a robot, to be used for all interactions with a robot. There are two ways to instanti...
Definition client.hpp:46
log_level
Severity levels for the logger.
Definition logging.hpp:31
const char * default_module_name()
Returns the default "channel name" of log messages related to a Viam C++ module.
boost::log::sources::severity_channel_logger_mt< log_level > LogSource
Type alias for the log source in the C++ SDK.
Definition logging.hpp:51
const char * global_resource_name()
Returns the "channel name" of general log messages related to the Viam C++ SDK.
Definition logging.hpp:69