Home
last modified time | relevance | path

Searched refs:record (Results 51 – 75 of 216) sorted by relevance

123456789

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DNullHandler.php48 public function isHandling(array $record): bool argument
50 return $record['level'] >= $this->level;
56 public function handle(array $record): bool argument
58 return $record['level'] >= $this->level;
H A DZendMonitorHandler.php62 protected function write(array $record): void argument
65 Logger::getLevelName($record['level']),
66 $record['message'],
67 $record['formatted'],
68 $this->levelMap[$record['level']]
H A DProcessableHandlerTrait.php60 protected function processRecord(array $record): array argument
63 $record = $processor($record);
66 return $record;
H A DSlackHandler.php110 protected function generateDataStream(array $record): string argument
112 $content = $this->buildContent($record);
122 private function buildContent(array $record): string argument
124 $dataArray = $this->prepareContentData($record);
133 protected function prepareContentData(array $record): array argument
135 $dataArray = $this->slackRecord->getSlackData($record);
162 protected function write(array $record): void argument
164 parent::write($record);
H A DStreamHandler.php128 protected function write(array $record): void argument
133 …his may be caused by a premature call to close().' . Utils::getRecordMessageForException($record));
146 …pened in append mode: '.$this->errorMessage, $url) . Utils::getRecordMessageForException($record));
154 …row new \LogicException('No stream was opened yet' . Utils::getRecordMessageForException($record));
162 $this->streamWrite($stream, $record);
172 * @param array $record
176 protected function streamWrite($stream, array $record): void argument
178 fwrite($stream, (string) $record['formatted']);
H A DDynamoDbHandler.php70 protected function write(array $record): void argument
72 $filtered = $this->filterEmptyFields($record['formatted']);
87 * @param mixed[] $record
90 protected function filterEmptyFields(array $record): array argument
92 return array_filter($record, function ($value) {
H A DSyslogHandler.php61 protected function write(array $record): void argument
64 …this->ident.'" and facility "'.$this->facility.'"' . Utils::getRecordMessageForException($record));
66 syslog($this->logLevels[$record['level']], (string) $record['formatted']);
H A DIFTTTHandler.php54 public function write(array $record): void argument
57 "value1" => $record["channel"],
58 "value2" => $record["level_name"],
59 "value3" => $record["message"],
H A DOverflowHandler.php90 public function handle(array $record): bool argument
92 if ($record['level'] < $this->level) {
96 $level = $record['level'];
105 $this->buffer[$level][] = $record;
119 $this->handler->handle($record);
H A DBufferHandler.php61 public function handle(array $record): bool argument
63 if ($record['level'] < $this->level) {
84 $record = $this->processRecord($record);
87 $this->buffer[] = $record;
H A DBrowserConsoleHandler.php60 protected function write(array $record): void argument
63 static::$records[] = $record;
175 foreach (static::$records as $record) {
176 $context = static::dump('Context', $record['context']);
177 $extra = static::dump('Extra', $record['extra']);
180 $script[] = static::call_array('log', static::handleStyles($record['formatted']));
184 … [static::call_array('groupCollapsed', static::handleStyles($record['formatted']))],
H A DHandlerWrapper.php49 public function isHandling(array $record): bool argument
51 return $this->handler->isHandling($record);
57 public function handle(array $record): bool argument
59 return $this->handler->handle($record);
H A DLogglyHandler.php122 protected function write(array $record): void argument
124 $this->send($record["formatted"], static::ENDPOINT_SINGLE);
131 $records = array_filter($records, function ($record) use ($level) {
132 return ($record['level'] >= $level);
H A DSyslogUdpHandler.php70 protected function write(array $record): void argument
72 $lines = $this->splitMessageIntoLines($record['formatted']);
74 … $header = $this->makeCommonSyslogHeader($this->logLevels[$record['level']], $record['datetime']);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DWebProcessor.php79 public function __invoke(array $record): array argument
84 return $record;
87 $record['extra'] = $this->appendExtraFields($record['extra']);
89 return $record;
H A DProcessIdProcessor.php24 public function __invoke(array $record): array argument
26 $record['extra']['process_id'] = getmypid();
28 return $record;
H A DHostnameProcessor.php30 public function __invoke(array $record): array argument
32 $record['extra']['hostname'] = self::$host;
34 return $record;
H A DMemoryPeakUsageProcessor.php25 public function __invoke(array $record): array argument
33 $record['extra']['memory_peak_usage'] = $usage;
35 return $record;
H A DMemoryUsageProcessor.php25 public function __invoke(array $record): array argument
33 $record['extra']['memory_usage'] = $usage;
35 return $record;
H A DTagProcessor.php55 public function __invoke(array $record): array argument
57 $record['extra']['tags'] = $this->tags;
59 return $record;
H A DUidProcessor.php38 public function __invoke(array $record): array argument
40 $record['extra']['uid'] = $this->uid;
42 return $record;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ChromeUXReport/
H A DQueryResponse.php30 public function setRecord(Record $record) argument
32 $this->record = $record;
39 return $this->record;
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/
H A DUtils.php267 public static function getRecordMessageForException(array $record): string argument
272 if ($record['context']) {
273 $context = "\nContext: " . json_encode($record['context']);
275 if ($record['extra']) {
276 $extra = "\nExtra: " . json_encode($record['extra']);
282 …return "\nThe exception occurred while attempting to log: " . $record['message'] . $context . $ext…
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/Record/
H A DAbstractPlaceRecord.php12 * @param mixed $record
15 public function __construct($record, $locales = ['en']) argument
18 parent::__construct($record);
/plugin/glossary/
H A Dglossary.class.php162 foreach ($all as $record)
163 if ($record['ip'] == $ip)
547 $record = $all [$keys [$rand]];
555 $pageId = trim ($record['ticket']);
616 foreach ($all as $md5id => $record)
621 $pageId = trim ($record['useTicket']);
623 $pageId = trim ($record['ticket']);
627 if ($record['date'] > $recent) {
703 foreach ($all as $record) {
708 ' <td>'.$record['ip'].'</td>'.NL.
[all …]

123456789