Loop logging disabled - What does it exactly means?

Need to ensure that “Loop logging is disabled” - What does it exactly means? We have this as part of code review checklist. Please suggest.

Hello,

I think it can mean to avoid log inside loop, that cause continuous iteration of the same log.

For example if inside a loop of 20 elements I insert a Log Message “Working Element” it will cause the same log to be written 20 times, making log analysis more difficult to read and also causing memory issues on the long run.