Skip to content

Commit

Permalink
Log srv
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Feb 15, 2024
1 parent 388208d commit f48ec44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion adnl/adnl-network-manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ void AdnlNetworkManagerImpl::send_udp_packet(AdnlNodeIdShort src_id, AdnlNodeIdS
td::uint32 priority, td::BufferSlice data) {
auto it = adnl_id_2_cat_.find(src_id);
if (it == adnl_id_2_cat_.end()) {
VLOG(ADNL_WARNING) << this << ": dropping OUT message [" << src_id << "->" << dst_id << "]: unknown src";
VLOG(ADNL_WARNING) << this << ": dropping OUT message [" << src_id << "->" << dst_id
<< "]: unknown src: " << src_id.bits256_value().to_hex();
return;
}

Expand Down

0 comments on commit f48ec44

Please sign in to comment.