- Reload Error Log
- Date and Time of the log update
- Error log content
- Clear log
Reload Error Log
Instead of reloading the entire browser, we have added the CTRL (Command) + R shortcut to help you refresh the list.
Date and Time
To ensure the log is up-to-date, we have added the date and time of the latest update to the log.
Error log content
By default, the error log is a file located on your server. To access it, you would need FTP access or an FTP plugin. You have to locate, download, and open the file. Since the error log is constantly updating, it’s much easier to have it displayed within WordPress, with updates visible upon page reload.
In the section title, you can also see a timestamp indicating the last update. This timestamp does not change on reload. It only updates if something happens in your WordPress that triggers a notification and update in the error log.
Clear error log
Error logs can grow very long very quickly, making them difficult to manage. That’s why we have added an option to clear the log.
Filter Error Log
Error log can long and messy.
Under settings you can select what error log type you want to read.
E_ALL | All errors and warnings, as supported. This includes all error types except E_STRICT prior to PHP 5.4.0. |
E_ERROR | Fatal runtime errors. These indicate errors that cannot be recovered from, such as a memory allocation problem. |
E_WARNING | Runtime warnings (non-fatal errors). Execution of the script is not halted. |
E_PARSE | Compile-time parse errors. Parse errors should only be generated by the parser. |
E_NOTICE | Runtime notices. Indicate something that could be an error but could also happen in the normal course of running a script. |
E_CORE_ERROR | Fatal errors that occur during PHP’s initial startup. This is like E_ERROR, but it is generated by the core of PHP. |
E_CORE_WARNING | Warnings (non-fatal errors) that occur during PHP’s initial startup. This is like E_WARNING, but it is generated by the core of PHP. |
E_COMPILE_ERROR | Fatal compile-time errors. This is like E_ERROR, but it is generated by the Zend Scripting Engine. |
E_COMPILE_WARNING | Compile-time warnings (non-fatal errors). This is like E_WARNING, but it is generated by the Zend Scripting Engine. |
E_USER_ERROR | User-generated error message. This is like E_ERROR, but it is generated in PHP code using the function trigger_error() . |
E_USER_WARNING | User-generated warning message. This is like E_WARNING, but it is generated in PHP code using the function trigger_error() . |
E_USER_NOTICE | User-generated notice message. This is like E_NOTICE, but it is generated in PHP code using the function trigger_error() . |
E_STRICT | Enable to have PHP suggest changes to your code which will ensure the best interoperability and forward compatibility of your code. |
E_RECOVERABLE_ERROR | Catchable fatal error. It indicates that a potentially dangerous error occurred, but did not leave the Engine in an unstable state. |
E_DEPRECATED | Run-time notices. Enable this to receive warnings about code that will not work in future versions of PHP. |
E_USER_DEPRECATED | User-generated warning message. This is like E_DEPRECATED, but it is generated in PHP code using the function trigger_error() . |