有时我忘记清空调试。日志文件(或它是否存在),在尝试绕过一个bug之后,我发现它的内容太多,无法在基本的Windows文本编辑器中打开。
我的wp配置的一部分。php文件:
error_reporting( E_ALL );
define( \'WP_DEBUG\', true );
define( \'SAVEQUERIES\', true );
define( \'WP_DEBUG_LOG\', true ); // file: /core_root/wp-content/debug.log
define( \'WP_DEBUG_DISPLAY\', true );
Question: 有没有办法通过Wordpress做到这一点,或者我必须使用基本的php函数才能做到这一点?