diff --git a/doomsday/client/src/world/generators.cpp b/doomsday/client/src/world/generators.cpp index 89ab5bc221..dfa2ce1707 100644 --- a/doomsday/client/src/world/generators.cpp +++ b/doomsday/client/src/world/generators.cpp @@ -162,9 +162,11 @@ ptcgen_t *Generators::linkToList(ptcgen_t *gen, uint listIndex) { if(it->gen == gen) { - LOG_AS("Generators::linkToList"); - LOG_DEBUG("Attempted repeat link of generator %p to list %u.") - << de::dintptr(gen) << listIndex; + // Warning message disabled as these are occuring so thick and fast + // that logging is pointless (and negatively affecting performance). + //LOG_AS("Generators::linkToList"); + //LOG_DEBUG("Attempted repeat link of generator %p to list %u.") + // << de::dintptr(gen) << listIndex; return gen; // No, no... }