Skip to content

Commit b757b8c

Browse files
committed
#10 fix:Some code optimization
1 parent dfeaaf4 commit b757b8c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

example/GigeCam/mv_cam.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ bool MvCam::Initialization() {
9090
PrintDeviceInfo(p_device_info);
9191
}
9292
} else {
93-
LOG(ERROR) << "Find No GIGE or USB Cam Devices!";
93+
LOG(ERROR) << "Not find GIGE or USB Cam Devices!";
9494
return false;
9595
}
9696
LOG(INFO) << "Number of cameras detected : " << st_device_list.nDeviceNum;

infinite_sense_core/src/messenger.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Messenger::Messenger() {
1212
publisher_.bind(endpoint_);
1313
subscriber_.connect(endpoint_);
1414

15-
LOG(INFO) << "Connected to ZMQ endpoint: " << endpoint_;
15+
LOG(INFO) << "Link Net: " << endpoint_;
1616
} catch (const zmq::error_t& e) {
17-
LOG(ERROR) << "ZMQ initialization error: " << e.what();
17+
LOG(ERROR) << "Net initialization error: " << e.what();
1818
CleanUp();
1919
}
2020
}

0 commit comments

Comments
 (0)