diff --git a/xwords4/relay/timermgr.cpp b/xwords4/relay/timermgr.cpp index 29d9f11b6..702a0e154 100644 --- a/xwords4/relay/timermgr.cpp +++ b/xwords4/relay/timermgr.cpp @@ -47,7 +47,7 @@ void TimerMgr::SetTimer( time_t inMillis, TimerProc proc, void* closure, int interval ) { - logf( XW_LOGINFO, "setTimer: uptime = %ld", uptime() ); + logf( XW_LOGINFO, "%s: uptime = %ld", __func__, uptime() ); TimerInfo ti; ti.proc = proc; ti.closure = closure; diff --git a/xwords4/relay/xwrelay.cpp b/xwords4/relay/xwrelay.cpp index 4f6fe9ad7..305956786 100644 --- a/xwords4/relay/xwrelay.cpp +++ b/xwords4/relay/xwrelay.cpp @@ -380,7 +380,7 @@ processDisconnect( unsigned char* bufp, int bufLen, int socket ) void killSocket( int socket, const char* why ) { - logf( XW_LOGERROR, "killSocket(%d): %s", socket, why ); + logf( XW_LOGINFO, "killSocket(%d): %s", socket, why ); CRefMgr::Get()->RemoveSocketRefs( socket ); /* Might want to kill the thread it belongs to if we're not in it, e.g. when unable to write to another socket. */