Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96577400
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
Sat, Dec 28, 10:34
Size
630 B
Mime Type
text/x-php
Expires
Mon, Dec 30, 10:34 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23210272
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'
),
),
'key_epoch'
=>
array
(
'columns'
=>
array
(
'epoch'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment