Sitecore repeatedly comments

In my log files, I see the following entries:

ManagedPoolThread #0 11:19:00 DEBUG Committing table: Status ManagedPoolThread #0 11:19:00 DEBUG Row# 693badb3-51a0-7ea0-4617-824aedfb7d6f Modified ManagedPoolThread #0 11:19:00 DEBUG Trying 1 by 1 update... ManagedPoolThread #0 11:19:00 DEBUG Commit success. 

This log message is constantly repeated as soon as the site starts every 12 seconds.

Does anyone know the source of this problem?

+7
sitecore
source share
1 answer

Frequent fixing of the status table is the expected behavior. You can disable the DEBUG logging level (ERROR> WARN> INFO> DEBUG) using the following setting in the web.config file:

 <log4net> ... <root> <priority value="WARN" /> </root> ... </log4net> 

Change the value to the desired logging level.

0
source share

All Articles