Skip to content

Commit daf83f9

Browse files
committed
Remove comms logging
1 parent 232f3cf commit daf83f9

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

source_common/comms/comms_module.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ namespace Comms
4646
CommsModule::CommsModule(
4747
const std::string& domainAddress
4848
) {
49-
LAYER_LOG("Client UDS socket create");
5049
sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
5150
if (sockfd < 0)
5251
{
@@ -61,7 +60,6 @@ CommsModule::CommsModule(
6160
std::strcpy(servAddr.sun_path + 1, domainAddress.c_str());
6261
servAddr.sun_path[0] = '\0';
6362

64-
LAYER_LOG("Client UDS connect");
6563
int conn = connect(
6664
sockfd,
6765
reinterpret_cast<const struct sockaddr*>(&servAddr),
@@ -74,13 +72,8 @@ CommsModule::CommsModule(
7472
return;
7573
}
7674

77-
LAYER_LOG("Client make transmitter");
7875
transmitter = std::make_unique<Transmitter>(*this);
79-
80-
LAYER_LOG("Client make receiver");
8176
receiver = std::make_unique<Receiver>(*this);
82-
83-
LAYER_LOG("Client make complete");
8477
}
8578

8679
/** See header for documentation. */

0 commit comments

Comments
 (0)