Skip to content

Commit

Permalink
Update binding exception logging level to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
abitmore authored Jul 24, 2024
1 parent fe9f7e1 commit 8ebca15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/network/tcp_socket.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ namespace fc {
}
catch (const std::exception& except)
{
elog("Exception binding outgoing connection to desired local endpoint ${endpoint}: ${what}", ("endpoint", local_endpoint)("what", except.what()));
wlog("Exception binding outgoing connection to desired local endpoint ${endpoint}: ${what}",
("endpoint", local_endpoint)("what", except.what()));
FC_THROW("error binding to ${endpoint}: ${what}", ("endpoint", local_endpoint)("what", except.what()));
}
}
Expand Down

0 comments on commit 8ebca15

Please sign in to comment.