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
No related tags found
1 merge request!30bugfix(code): redundant semicolon
Pipeline #403835 passed with warnings
## [1.13.1] - 2024-08-13
### Fixed
- removed redundant semicolon in `SimpleLoggerFactory` class
## [1.13.0] - 2024-08-09 ## [1.13.0] - 2024-08-09
### Changed ### Changed
- Deprecated `WPDeskLoggerFactory`. - Deprecated `WPDeskLoggerFactory`.
......
...@@ -72,7 +72,7 @@ final class SimpleLoggerFactory implements LoggerFactory { ...@@ -72,7 +72,7 @@ final class SimpleLoggerFactory implements LoggerFactory {
if ( empty( $this->logger->getHandlers() ) && defined( 'WP_DEBUG_LOG' ) && WP_DEBUG_LOG ) { if ( empty( $this->logger->getHandlers() ) && defined( 'WP_DEBUG_LOG' ) && WP_DEBUG_LOG ) {
$this->set_handler( $this->set_handler(
$this->logger, $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