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

Merge branch 'bugfix/semicolon' into 'master'

bugfix(code): redundant semicolon

See merge request !30
parents bb46a797 275a791a
No related branches found
Tags 1.13.1
1 merge request!30bugfix(code): redundant semicolon
Pipeline #403835 passed with warnings with stages
in 51 seconds
## [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.
Finish editing this message first!
Please register or to comment