Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
die_coolen_jungs
our_own_cloud_project
Commits
f7e29eab
Commit
f7e29eab
authored
Apr 17, 2013
by
Bernhard Posselt
Browse files
fix admin log display and use a more readable format
parent
8471340d
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/log/owncloud.php
View file @
f7e29eab
...
...
@@ -49,7 +49,7 @@ class OC_Log_Owncloud {
public
static
function
write
(
$app
,
$message
,
$level
)
{
$minLevel
=
min
(
OC_Config
::
getValue
(
"loglevel"
,
OC_Log
::
WARN
),
OC_Log
::
ERROR
);
if
(
$level
>=
$minLevel
)
{
$time
=
date
(
"
Y-m-d
H:i:s"
,
time
());
$time
=
date
(
"
F d, Y
H:i:s"
,
time
());
$entry
=
array
(
'app'
=>
$app
,
'message'
=>
$message
,
'level'
=>
$level
,
'time'
=>
$time
);
$handle
=
@
fopen
(
self
::
$logFile
,
'a'
);
if
(
$handle
)
{
...
...
settings/js/log.js
View file @
f7e29eab
...
...
@@ -55,7 +55,11 @@ OC.Log={
row
.
append
(
messageTd
);
var
timeTd
=
$
(
'
<td/>
'
);
timeTd
.
text
(
formatDate
(
entry
.
time
*
1000
));
if
(
isNaN
(
entry
.
time
)){
timeTd
.
text
(
entry
.
time
);
}
else
{
timeTd
.
text
(
formatDate
(
entry
.
time
*
1000
));
}
row
.
append
(
timeTd
);
$
(
'
#log
'
).
append
(
row
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment