• I have over 4000 errors in my log file that look like this:

    
    [04-Dec-2019 02:35:55 UTC] 
    [04-Dec-2019 02:47:51 UTC] 
    [04-Dec-2019 03:19:55 UTC] 
    [04-Dec-2019 03:41:31 UTC]
    

    I do get other error messages, but then I also get these blank errors with a blue circle by them every few minutes.

    My configuration in the wp-config file looks like this, so I don’t know why it’s logging all that crap for no reason:

    
    @ini_set('log_errors', 'On');
    @ini_set('error_log', '/wp-content/elm-error-logs/php-errors.log');
    
    //Don't show errors to site visitors.
    @ini_set('display_errors', 'Off');
    if ( !defined('WP_DEBUG_DISPLAY') ) {
    	define('WP_DEBUG_DISPLAY', false);
    }
    
    • This topic was modified 4 years, 11 months ago by Richard.
Viewing 1 replies (of 1 total)
  • Plugin Author Janis Elsts

    (@whiteshadow)

    My guess would be that one of the other plugins (or the theme) is logging empty strings for some strange reason. Maybe you could try temporarily deactivating other plugins and see if the blank lines stop showing up?

    Alternatively, you could also try searching all .php files in the /wp-content/plugins directory for references to the error_log function. This would help narrow down the possibilities without deactivating anything.

Viewing 1 replies (of 1 total)
  • The topic ‘Error logging nothing every few minutes’ is closed to new replies.