Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-api-client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
wp-api-client
Merge requests
!7
bugfix(logger): memory consumption
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
bugfix(logger): memory consumption
bugfix/memory-consumption
into
master
Overview
0
Commits
3
Pipelines
3
Changes
1
Merged
Grzegorz Rola
requested to merge
bugfix/memory-consumption
into
master
6 months ago
Overview
0
Commits
3
Pipelines
3
Changes
1
0
0
Merge request reports
Viewing commit
56f79780
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
56f79780
bugfix(logger): memory consumption
· 56f79780
Grzegorz Rola
authored
6 months ago
src/Client/ClientImplementation.php
+
1
−
1
View file @ 56f79780
Edit in single-file editor
Open in Web IDE
Show full file
@@ -88,7 +88,7 @@ class ClientImplementation implements Client, LoggerAwareInterface
$this
->
timeout
);
if
(
$this
->
is_logger_available
)
{
if
(
$this
->
is_logger_available
)
{
$this
->
logger
->
debug
(
"Sent request with: URL:
{
$fullUrl
}
;
\n
METHOD:
{
$method
}
;
\n
BODY:
{
$body
}
;
\n
"
.
"HEADERS: "
.
json_encode
(
Loading