We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a067fae commit 8c19c31Copy full SHA for 8c19c31
src/cli/main.cpp
@@ -9,6 +9,9 @@
9
#include <cetl/pf17/cetlpf.hpp>
10
#include <libcyphal/types.hpp>
11
12
+#include <spdlog/sinks/stdout_color_sinks.h>
13
+#include <spdlog/spdlog.h>
14
+
15
#include <algorithm>
16
#include <cerrno>
17
#include <cstdlib>
@@ -52,6 +55,7 @@ int main(const int, const char** const)
52
55
53
56
setup_signal_handlers();
54
57
58
+ spdlog::info("ocvsmd cli started (ver='{}.{}').", VERSION_MAJOR, VERSION_MINOR);
59
::openlog("ocvsmd-cli", LOG_PID, LOG_USER);
60
::syslog(LOG_NOTICE, "ocvsmd cli started."); // NOLINT *-vararg
61
{
0 commit comments