Skip to content

Commit

Permalink
Fix type to log ipc session_id (#4448)
Browse files Browse the repository at this point in the history
Co-authored-by: gr0vity-dev <[email protected]>
  • Loading branch information
gr0vity-dev and gr0vity-dev authored Feb 28, 2024
1 parent 2526b75 commit 522f05c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/node/ipc/ipc_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class session final : public nano::ipc::socket_base, public std::enable_shared_f
server (server_a), node (server_a.node), session_id (server_a.id_dispenser.fetch_add (1)),
io_ctx (io_ctx_a), strand (io_ctx_a.get_executor ()), socket (io_ctx_a), config_transport (config_transport_a)
{
node.logger.debug (nano::log::type::ipc, "Creating session with id: ", session_id.load ());
node.logger.debug (nano::log::type::ipc, "Creating session with id: {}", session_id.load ());
}

~session ()
Expand Down

0 comments on commit 522f05c

Please sign in to comment.