Skip to content

Commit

Permalink
add line numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerZhongAWS committed Jul 12, 2023
1 parent db1140c commit d155852
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/TcpAdapterProxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ namespace aws { namespace iot { namespace securedtunneling {
// backward compatibility: set connection id to 1 if first received a message with no connection id (id value will be 0)
if (!connection_id)
{
BOOST_LOG_SEV(log, info) << "reverting to v2 message format";
BOOST_LOG_SEV(log, info) << "reverting to v2 message format L1078";
connection_id = 1;
tac.adapter_config.is_v2_message_format = true;
}
Expand Down Expand Up @@ -1331,7 +1331,7 @@ namespace aws { namespace iot { namespace securedtunneling {
// backward compatibility: set connection id to 1 if first received a message with no connection id (id value will be 0)
if (!connection_id)
{
BOOST_LOG_SEV(log, info) << "reverting to v2 message format";
BOOST_LOG_SEV(log, info) << "reverting to v2 message format L1334";
connection_id = 1;
tac.adapter_config.is_v2_message_format = true;
}
Expand Down Expand Up @@ -1435,7 +1435,7 @@ namespace aws { namespace iot { namespace securedtunneling {
// backward compatibility: set connection id to 1 if first received a message with no connection id (id value will be 0)
if (!connection_id)
{
BOOST_LOG_SEV(log, info) << "reverting to v2 message format";
BOOST_LOG_SEV(log, info) << "reverting to v2 message format L1438";
connection_id = 1;
tac.adapter_config.is_v2_message_format = true;
}
Expand Down Expand Up @@ -1567,7 +1567,7 @@ namespace aws { namespace iot { namespace securedtunneling {
// backward compatibility: set connection id to 1 if first received a message with no connection id (id value will be 0)
if (!connection_id)
{
BOOST_LOG_SEV(log, info) << "reverting to v2 message format";
BOOST_LOG_SEV(log, info) << "reverting to v2 message format L1570";
connection_id = 1;
tac.adapter_config.is_v2_message_format = true;
}
Expand Down

0 comments on commit d155852

Please sign in to comment.