Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
7917d3b0
Commit
7917d3b0
authored
10 years ago
by
Olivier Paroz
Browse files
Options
Downloads
Patches
Plain Diff
Remove changes which were inadvertently pushed to master
parent
d9c0be87
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/private/log.php
+0
-78
0 additions, 78 deletions
lib/private/log.php
with
0 additions
and
78 deletions
lib/private/log.php
+
0
−
78
View file @
7917d3b0
<?php
<?php
/**
/**
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
* Copyright (c) 2014 Jordi Boggiano <j.boggiano@seld.be>
* Copyright (c) 2014 Olivier Paroz <owncloud@oparoz.com>
* This file is licensed under the Affero General Public License version 3 or
* This file is licensed under the Affero General Public License version 3 or
* later.
* later.
* See the COPYING-README file.
* See the COPYING-README file.
...
@@ -149,8 +147,6 @@ class Log implements ILogger {
...
@@ -149,8 +147,6 @@ class Log implements ILogger {
// interpolate $message as defined in PSR-3
// interpolate $message as defined in PSR-3
$replace
=
array
();
$replace
=
array
();
foreach
(
$context
as
$key
=>
$val
)
{
foreach
(
$context
as
$key
=>
$val
)
{
// Allows us to dump arrays, objects and exceptions to the log
$val
=
$this
->
normalize
(
$val
);
$replace
[
'{'
.
$key
.
'}'
]
=
$val
;
$replace
[
'{'
.
$key
.
'}'
]
=
$val
;
}
}
...
@@ -160,78 +156,4 @@ class Log implements ILogger {
...
@@ -160,78 +156,4 @@ class Log implements ILogger {
$logger
=
$this
->
logger
;
$logger
=
$this
->
logger
;
call_user_func
(
array
(
$logger
,
'write'
),
$app
,
$message
,
$level
);
call_user_func
(
array
(
$logger
,
'write'
),
$app
,
$message
,
$level
);
}
}
private
function
normalize
(
$data
)
{
if
(
null
===
$data
||
is_scalar
(
$data
))
{
return
$data
;
}
if
(
is_array
(
$data
)
||
$data
instanceof
\Traversable
)
{
$normalized
=
array
();
$count
=
1
;
foreach
(
$data
as
$key
=>
$value
)
{
if
(
$count
++
>=
1000
)
{
$normalized
[
'...'
]
=
'Over 1000 items, aborting normalization'
;
break
;
}
$normalized
[
$key
]
=
$this
->
normalize
(
$value
);
}
//return $normalized;
return
$this
->
toJson
(
$normalized
,
true
);
}
if
(
is_object
(
$data
))
{
if
(
$data
instanceof
\Exception
)
{
return
$this
->
normalizeException
(
$data
);
}
$arrayObject
=
new
\ArrayObject
(
$data
);
$serializedObject
=
$arrayObject
->
getArrayCopy
();
return
sprintf
(
"[object] (%s: %s)"
,
get_class
(
$data
),
$this
->
toJson
(
$serializedObject
,
true
));
}
if
(
is_resource
(
$data
))
{
return
'[resource]'
;
}
return
'[unknown('
.
gettype
(
$data
)
.
')]'
;
}
private
function
normalizeException
(
\Exception
$e
)
{
$data
=
array
(
'class'
=>
get_class
(
$e
),
'message'
=>
$e
->
getMessage
(),
'file'
=>
$e
->
getFile
()
.
':'
.
$e
->
getLine
(),
);
$trace
=
$e
->
getTrace
();
foreach
(
$trace
as
$frame
)
{
if
(
isset
(
$frame
[
'file'
]))
{
$data
[
'trace'
][]
=
$frame
[
'file'
]
.
':'
.
$frame
[
'line'
];
}
else
{
$data
[
'trace'
][]
=
$this
->
toJson
(
$frame
,
true
);
}
}
if
(
$previous
=
$e
->
getPrevious
())
{
$data
[
'previous'
]
=
$this
->
normalizeException
(
$previous
);
}
return
$this
->
toJson
(
$data
,
true
);
}
private
function
toJson
(
$data
,
$ignoreErrors
=
false
)
{
// suppress json_encode errors since it's twitchy with some inputs
if
(
$ignoreErrors
)
{
if
(
version_compare
(
PHP_VERSION
,
'5.4.0'
,
'>='
))
{
return
@
json_encode
(
$data
,
JSON_UNESCAPED_SLASHES
|
JSON_UNESCAPED_UNICODE
);
}
return
@
json_encode
(
$data
);
}
if
(
version_compare
(
PHP_VERSION
,
'5.4.0'
,
'>='
))
{
return
json_encode
(
$data
,
JSON_UNESCAPED_SLASHES
|
JSON_UNESCAPED_UNICODE
);
}
return
json_encode
(
$data
);
}
}
}
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