Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-logs
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
wp-logs
Commits
82c10f0f
Commit
82c10f0f
authored
10 months ago
by
Grzegorz Rola
Browse files
Options
Downloads
Plain Diff
Merge branch 'bugfix/semicolon' into 'master'
bugfix(code): redundant semicolon See merge request
!30
parents
bb46a797
275a791a
No related branches found
Branches containing commit
Tags
1.13.1
Tags containing commit
1 merge request
!30
bugfix(code): redundant semicolon
Pipeline
#403835
passed with warnings with stages
in 51 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
src/SimpleLoggerFactory.php
+1
-1
1 addition, 1 deletion
src/SimpleLoggerFactory.php
with
5 additions
and
1 deletion
CHANGELOG.md
+
4
−
0
View file @
82c10f0f
## [1.13.1] - 2024-08-13
### Fixed
-
removed redundant semicolon in
`SimpleLoggerFactory`
class
## [1.13.0] - 2024-08-09
### Changed
-
Deprecated
`WPDeskLoggerFactory`
.
...
...
This diff is collapsed.
Click to expand it.
src/SimpleLoggerFactory.php
+
1
−
1
View file @
82c10f0f
...
...
@@ -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'
]
)
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment