Проблему удалось найти с помощью такого кода:
function error_handler($code, $message, $file, $line) {
if(! preg_match('/kses_init/',$message ))
return;
$log = 'Into '.__FUNCTION__.'() at line '.__LINE__.
"\n\n---CODE---\n". print_r( $code, true).
"\n\n---MESSAGE---\n". print_r( $message, true).
"\n\n---FILE---\n". print_r( $file, true).
"\n\n---LINE---\n". print_r( $line, true).
"\n\n---_SERVER---\n". print_r($_SERVER, true).
"\n\n---_POST---\n". print_r($_POST, true)."\n\n";
error_log(USER_IP . $log , 3, __DIR__."/test.log");
}
set_error_handler("error_handler");