We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbaf77a commit bd0fec7Copy full SHA for bd0fec7
infinite_sense_core/src/infinite_sense.cpp
@@ -13,6 +13,9 @@ Synchronizer::Synchronizer() {
13
<< " █ ▐▛▚▖▐▌▐▌ █ ▐▛▚▖▐▌ █ █ ▐▌ ▐▌ ▐▌ ▐▛▚▖▐▌▐▌ ▐▌ " << "\n"
14
<< " █ ▐▌ ▝▜▌▐▛▀▀▘ █ ▐▌ ▝▜▌ █ █ ▐▛▀▀▘ ▝▀▚▖▐▛▀▀▘▐▌ ▝▜▌ ▝▀▚▖▐▛▀▀▘" << "\n"
15
<< " ▗▄█▄▖▐▌ ▐▌▐▌ ▗▄█▄▖▐▌ ▐▌▗▄█▄▖ █ ▐▙▄▄▖▗▄▄▞▘▐▙▄▄▖▐▌ ▐▌▗▄▄▞▘▐▙▄▄▖";
16
+ int major,minor,patch;
17
+ zmq_version(&major,&minor,&patch);
18
+ LOG(INFO) << "ZeroMQ version: " << major << "." << minor << "." << patch;
19
};
20
void Synchronizer::SetLogPath(const std::string& path) { SetLogDestination(FATAL, path.c_str()); }
21
void Synchronizer::SetNetLink(std::string net_dev, const unsigned int port) {
0 commit comments