diff options
author | Megaf <mmegaf@gmail.com> | 2014-06-10 15:11:06 -0300 |
---|---|---|
committer | sapier <Sapier at GMX dot net> | 2014-06-12 23:18:26 +0200 |
commit | d7986da58c58b5ba0148c7b1fc62a01e272c3401 (patch) | |
tree | b70d3ec04a43bafc455946c076d384171d6a9a72 | |
parent | 003634e049d599b8ed5ae3ba6b3250e9eb7741ca (diff) | |
download | minetest-d7986da58c58b5ba0148c7b1fc62a01e272c3401.tar.gz minetest-d7986da58c58b5ba0148c7b1fc62a01e272c3401.tar.bz2 minetest-d7986da58c58b5ba0148c7b1fc62a01e272c3401.zip |
Changed Time Out message from ERROR to INFO.
Changed Time Out message from ERROR to INFO.
-rw-r--r-- | src/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index 341333db9..ef6d80394 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -1372,7 +1372,7 @@ void ConnectionSendThread::runTimeouts(float dtime) */ if(peer->isTimedOut(m_timeout)) { - errorstream<<m_connection->getDesc() + infostream<<m_connection->getDesc() <<"RunTimeouts(): Peer "<<peer->id <<" has timed out." <<" (source=peer->timeout_counter)" |