Skip to content

Commit 59aa54f

Browse files
committed
i2p: log "SAM session" instead of "session"
This way the log messages are consistent with "Creating SAM session..."
1 parent d7ec30b commit 59aa54f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/i2p.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,9 +434,9 @@ void Session::Disconnect()
434434
{
435435
if (m_control_sock->Get() != INVALID_SOCKET) {
436436
if (m_session_id.empty()) {
437-
Log("Destroying incomplete session");
437+
Log("Destroying incomplete SAM session");
438438
} else {
439-
Log("Destroying session %s", m_session_id);
439+
Log("Destroying SAM session %s", m_session_id);
440440
}
441441
}
442442
m_control_sock = std::make_unique<Sock>(INVALID_SOCKET);

0 commit comments

Comments
 (0)