about summary refs log tree commit diff
path: root/src/game/server
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2011-03-31 21:46:01 +0200
committeroy <Tom_Adams@web.de>2011-03-31 21:46:01 +0200
commit32876b9ba737e6eaf75761889ded51fded8db13a (patch)
tree72ce0329d53a52bf54bf9c97a96a10862e8a9084 /src/game/server
parent85e9fb1e63384e5fae83aa08d4974056e6ec7c7f (diff)
downloadzcatch-32876b9ba737e6eaf75761889ded51fded8db13a.tar.gz
zcatch-32876b9ba737e6eaf75761889ded51fded8db13a.zip
changed the output level of a console message
Diffstat (limited to 'src/game/server')
-rw-r--r--src/game/server/gamecontext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp
index a50a7ef3..56b733f3 100644
--- a/src/game/server/gamecontext.cpp
+++ b/src/game/server/gamecontext.cpp
@@ -573,7 +573,7 @@ void CGameContext::OnMessage(int MsgID, CUnpacker *pUnpacker, int ClientID)
 	{
 		char aBuf[256];
 		str_format(aBuf, sizeof(aBuf), "dropped weird message '%s' (%d), failed on '%s'", m_NetObjHandler.GetMsgName(MsgID), MsgID, m_NetObjHandler.FailedMsgOn());
-		Console()->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "server", aBuf);
+		Console()->Print(IConsole::OUTPUT_LEVEL_DEBUG, "server", aBuf);
 		return;
 	}