Skip to content
Snippets Groups Projects
Commit 275a791a authored by Grzegorz Rola's avatar Grzegorz Rola
Browse files

bugfix(code): redundant semicolon

parent bb46a797
No related branches found
No related tags found
1 merge request!30bugfix(code): redundant semicolon
Pipeline #403830 passed with warnings
## [1.13.1] - 2024-08-13
### Fixed
- removed redundant semicolon in `SimpleLoggerFactory` class
## [1.13.0] - 2024-08-09
### Changed
- Deprecated `WPDeskLoggerFactory`.
......
......@@ -72,7 +72,7 @@ final class SimpleLoggerFactory implements LoggerFactory {
if ( empty( $this->logger->getHandlers() ) && defined( 'WP_DEBUG_LOG' ) && WP_DEBUG_LOG ) {
$this->set_handler(
$this->logger,
new ErrorLogHandler( ErrorLogHandler::OPERATING_SYSTEM, $this->options['level'] );
new ErrorLogHandler( ErrorLogHandler::OPERATING_SYSTEM, $this->options['level'] )
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment