Skip to content

Commit f3f4401

Browse files
committed
visionipc_server: prints -> logs
1 parent 6abe47b commit f3f4401

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

msgq/visionipc/visionipc_server.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ void VisionIpcServer::start_listener(){
8484

8585

8686
void VisionIpcServer::listener(){
87-
std::cout << "Starting listener for: " << name << std::endl;
87+
LOGD("Starting listener for: %s", name.c_str());
8888

8989
const std::string ipc_path = get_ipc_path(name);
9090
int sock = ipc_bind(ipc_path.c_str());
@@ -155,7 +155,7 @@ void VisionIpcServer::listener(){
155155
close(fd);
156156
}
157157

158-
std::cout << "Stopping listener for: " << name << std::endl;
158+
LOGD("Stopping listener for: %s", name.c_str());
159159
close(sock);
160160
unlink(ipc_path.c_str());
161161
}

0 commit comments

Comments
 (0)