当ERROR_LOG未按预期工作时如何进行调试

时间:2016-12-18 作者:Philip Ingram

试图调试我的开发,但由于调试中缺少输出而遇到很多挫折。日志例如,我在wp config中定义了它。php:

define( \'WP_DEBUG\', true );
define( \'WP_DEBUG_LOG\', true );
define( \'WP_DEBUG_DISPLAY\', false );
ini_set( \'display_errors\', 0 );
我的职能中有这一点。php

add_filter( \'the_content\', \'my_custom_function\' );
function my_custom_function( $content ){
  error_log( \'this fired\' ); //never works!
  $return $content;
}
我错过了什么?

1 个回复
最合适的回答,由SO网友:Philip Ingram 整理而成

禁用所有插件后,我能够缩小影响日志输出的插件范围。客户端安装了光速插件以提供缓存和压缩,这也影响了wp\\U调试功能。

相关推荐

即使WP_DEBUG设置为FALSE也会发出警告

链接https://vreqenz-stream.de/shop/ 在某些设备上打开而在其他设备上打开时引发警告<我认为这可能是cahce的问题,但我已经从WP rocket和浏览器中清除了缓存。只是为了获取信息,我正在使用Plesk web管理工具下面是我的WP\\U配置设置ini_set(\'log_errors\',\'On\'); ini_set(\'display_errors\',\'Off\'); ini_set(\'error_reporting\', E_ALL )