Skip to content

Commit

Permalink
string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dr7ana committed Feb 14, 2023
1 parent fa5082d commit e8c1b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llarp/rpc/rpc_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ namespace llarp::rpc
for (const auto& addr : r.GetConfig()->api.m_rpcBindAddresses)
{
m_LMQ->listen_plain(addr.zmq_address());
log::info(logcat, "Bound RPC server to ", addr.full_address());
log::info(logcat, "Bound RPC server to {}", addr.full_address());
}

for (const auto& [address, allowed_keys] : r.GetConfig()->api.m_rpcEncryptedAddresses)
Expand Down

0 comments on commit e8c1b77

Please sign in to comment.