We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecfaca8 commit 4d298c0Copy full SHA for 4d298c0
test/log.php
@@ -127,8 +127,11 @@ function($access) {
127
// First, increment our hitrate log for this entry.
128
if ( empty($log->incidence->{$entry['hash']}) ) {
129
$log->incidence->{$entry['hash']} = (object) array(
130
- 'message' => $entry['message'],
131
- 'count' => 1
+ 'first_logged' => $entry['time'],
+ 'message' => $entry['message'],
132
+ 'type' => $entry['type'],
133
+ 'format' => $entry['format'],
134
+ 'count' => 1
135
);
136
} else {
137
$log->incidence->{$entry['hash']}->count++;
0 commit comments