File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ namespace Comms
4646CommsModule::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. */
You can’t perform that action at this time.
0 commit comments