We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6abe47b commit f3f4401Copy full SHA for f3f4401
1 file changed
msgq/visionipc/visionipc_server.cc
@@ -84,7 +84,7 @@ void VisionIpcServer::start_listener(){
84
85
86
void VisionIpcServer::listener(){
87
- std::cout << "Starting listener for: " << name << std::endl;
+ LOGD("Starting listener for: %s", name.c_str());
88
89
const std::string ipc_path = get_ipc_path(name);
90
int sock = ipc_bind(ipc_path.c_str());
@@ -155,7 +155,7 @@ void VisionIpcServer::listener(){
155
close(fd);
156
}
157
158
- std::cout << "Stopping listener for: " << name << std::endl;
+ LOGD("Stopping listener for: %s", name.c_str());
159
close(sock);
160
unlink(ipc_path.c_str());
161
0 commit comments