Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101093706
PhabricatorDaemonLogEvent.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 5, 16:48
Size
550 B
Mime Type
text/x-php
Expires
Fri, Feb 7, 16:48 (2 d)
Engine
blob
Format
Raw Data
Handle
24091464
Attached To
rPH Phabricator
PhabricatorDaemonLogEvent.php
View Options
<?php
final
class
PhabricatorDaemonLogEvent
extends
PhabricatorDaemonDAO
{
protected
$logID
;
protected
$logType
;
protected
$message
;
protected
$epoch
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'logType'
=>
'text4'
,
'message'
=>
'text'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'logID'
=>
array
(
'columns'
=>
array
(
'logID'
,
'epoch'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment