From 89c22b04a2d3f1842dcd2fd1cc33013b42855eaa Mon Sep 17 00:00:00 2001 From: ulukyn Date: Mon, 13 May 2019 00:07:44 +0200 Subject: [PATCH] Changed: remove nlinfo of Register EId (made lof of useless logs...) --HG-- branch : patches-from-atys --- code/nel/src/misc/eid_translator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/src/misc/eid_translator.cpp b/code/nel/src/misc/eid_translator.cpp index 0d126de50..9c6c6ea51 100644 --- a/code/nel/src/misc/eid_translator.cpp +++ b/code/nel/src/misc/eid_translator.cpp @@ -285,7 +285,7 @@ void CEntityIdTranslator::registerEntity (const CEntityId &eid, const ucstring & return; } - nlinfo ("EIT: Register EId %s EntityName '%s' UId %d UserName '%s'", reid.toString().c_str(), entityName.toString().c_str(), uid, userName.c_str()); + //nlinfo ("EIT: Register EId %s EntityName '%s' UId %d UserName '%s'", reid.toString().c_str(), entityName.toString().c_str(), uid, userName.c_str()); RegisteredEntities.insert (make_pair(reid, CEntityIdTranslator::CEntity(entityName, uid, userName, entitySlot, shardId))); NameIndex.insert(make_pair(toLower(entityName), reid)); }