Skip to content

Commit a326b81

Browse files
committed
Move session start log statements to network.
1 parent 65fe124 commit a326b81

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

src/sessions/session_inbound.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ session_inbound::session_inbound(full_node& network, safe_chain& chain)
3939
chain_(chain),
4040
CONSTRUCT_TRACK(node::session_inbound)
4141
{
42-
LOG_INFO(LOG_NODE)
43-
<< "Starting inbound session on port ("
44-
<< network .network_settings().inbound_port << ").";
4542
}
4643

4744
void session_inbound::attach_protocols(channel::ptr channel)

src/sessions/session_manual.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ session_manual::session_manual(full_node& network, safe_chain& chain)
3939
chain_(chain),
4040
CONSTRUCT_TRACK(node::session_manual)
4141
{
42-
LOG_INFO(LOG_NODE)
43-
<< "Starting manual session.";
4442
}
4543

4644
void session_manual::attach_protocols(channel::ptr channel)

src/sessions/session_outbound.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ session_outbound::session_outbound(full_node& network, safe_chain& chain)
3939
chain_(chain),
4040
CONSTRUCT_TRACK(node::session_outbound)
4141
{
42-
LOG_INFO(LOG_NODE)
43-
<< "Starting outbound session.";
4442
}
4543

4644
void session_outbound::attach_protocols(channel::ptr channel)

0 commit comments

Comments
 (0)