supress Mapping string spam unless net debugging

This commit is contained in:
AzaezelX 2022-11-06 15:32:22 -06:00
parent 97eaab3f49
commit be108d8e48

View file

@ -62,7 +62,9 @@ public:
}
virtual void process(NetConnection *connection)
{
#ifdef TORQUE_DEBUG_NET
Con::printf("Mapping string: %s to index: %d", mString.getString(), mIndex);
#endif
connection->mapString(mIndex, mString);
}
#ifdef TORQUE_DEBUG_NET