Home
last modified time | relevance | path

Searched refs:record (Results 76 – 100 of 216) sorted by last modified time

123456789

/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DLogglyFormatter.php36 public function format(array $record): string argument
38 if (isset($record["datetime"]) && ($record["datetime"] instanceof \DateTimeInterface)) {
39 $record["timestamp"] = $record["datetime"]->format("Y-m-d\TH:i:s.uO");
40 unset($record["datetime"]);
43 return parent::format($record);
H A DLogmaticFormatter.php53 public function format(array $record): string argument
56 $record["hostname"] = $this->hostname;
59 $record["appname"] = $this->appname;
62 $record["@marker"] = static::MARKERS;
64 return parent::format($record);
H A DNormalizerFormatter.php51 * @param mixed[] $record
53 public function format(array $record) argument
55 return $this->normalize($record);
63 foreach ($records as $key => $record) {
64 $records[$key] = $this->format($record);
H A DScalarFormatter.php27 public function format(array $record): array argument
30 foreach ($record as $key => $value) {
H A DElasticaFormatter.php51 public function format(array $record) argument
53 $record = parent::format($record);
55 return $this->getDocument($record);
77 protected function getDocument(array $record): Document argument
80 $document->setData($record);
H A DElasticsearchFormatter.php49 public function format(array $record) argument
51 $record = parent::format($record);
53 return $this->getDocument($record);
79 * @param mixed[] $record Log message
82 protected function getDocument(array $record): array argument
84 $record['_index'] = $this->index;
85 $record['_type'] = $this->type;
87 return $record;
H A DFluentdFormatter.php58 public function format(array $record): string argument
60 $tag = $record['channel'];
62 $tag .= '.' . strtolower($record['level_name']);
66 'message' => $record['message'],
67 'context' => $record['context'],
68 'extra' => $record['extra'],
72 $message['level'] = $record['level'];
73 $message['level_name'] = $record['level_name'];
76 return Utils::jsonEncode([$tag, $record['datetime']->getTimestamp(), $message]);
82 foreach ($records as $record) {
[all …]
H A DFormatterInterface.php26 * @param array $record A record to format
31 public function format(array $record); argument
H A DHtmlFormatter.php86 public function format(array $record): string argument
88 $output = $this->addTitle($record['level_name'], $record['level']);
91 $output .= $this->addRow('Message', (string) $record['message']);
92 $output .= $this->addRow('Time', $this->formatDate($record['datetime']));
93 $output .= $this->addRow('Channel', $record['channel']);
94 if ($record['context']) {
96 foreach ($record['context'] as $key => $value) {
102 if ($record['extra']) {
104 foreach ($record['extra'] as $key => $value) {
122 foreach ($records as $record) {
[all …]
H A DJsonFormatter.php75 public function format(array $record): string argument
77 $normalized = $this->normalize($record);
H A DMongoDBFormatter.php49 public function format(array $record): array argument
52 $res = $this->formatArray($record);
65 foreach ($records as $key => $record) {
66 $formatted[$key] = $this->format($record);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DAbstractHandler.php51 public function isHandling(array $record): bool argument
53 return $record['level'] >= $this->level;
H A DWhatFailureGroupHandler.php27 public function handle(array $record): bool argument
31 $record = $this->processRecord($record);
36 $handler->handle($record);
52 foreach ($records as $record) {
53 $processed[] = $this->processRecord($record);
H A DAmqpHandler.php57 protected function write(array $record): void argument
59 $data = $record["formatted"];
60 $routingKey = $this->getRoutingKey($record);
92 foreach ($records as $record) {
93 if (!$this->isHandling($record)) {
98 $record = $this->processRecord($record);
99 $data = $this->getFormatter()->format($record);
104 $this->getRoutingKey($record)
116 protected function getRoutingKey(array $record): string argument
118 $routingKey = sprintf('%s.%s', $record['level_name'], $record['channel']);
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 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 DChromePHPHandler.php88 foreach ($records as $record) {
89 if ($record['level'] < $this->level) {
93 $message = $this->processRecord($record);
118 protected function write(array $record): void argument
124 self::$json['rows'][] = $record['formatted'];
156 $record = [
165 … self::$json['rows'][count(self::$json['rows']) - 1] = $this->getFormatter()->format($record);
H A DDeduplicationHandler.php89 foreach ($this->buffer as $record) {
90 if ($record['level'] >= $this->deduplicationLevel) {
91 $passthru = $passthru || !$this->isDuplicate($record);
93 $this->appendRecord($record);
113 private function isDuplicate(array $record): bool argument
125 $timestampValidity = $record['datetime']->getTimestamp() - $this->time;
126 $expectedMessage = preg_replace('{[\r\n].*}', '', $record['message']);
131 …if ($level === $record['level_name'] && $message === $expectedMessage && $timestamp > $timestampVa…
182 private function appendRecord(array $record): void argument
184 …deduplicationStore, $record['datetime']->getTimestamp() . ':' . $record['level_name'] . ':' . preg…
H A DFallbackGroupHandler.php30 public function handle(array $record): bool argument
34 $record = $this->processRecord($record);
38 $handler->handle($record);
55 foreach ($records as $record) {
56 $processed[] = $this->processRecord($record);
H A DFilterHandler.php114 public function isHandling(array $record): bool argument
116 return isset($this->acceptedLevels[$record['level']]);
122 public function handle(array $record): bool argument
124 if (!$this->isHandling($record)) {
130 $record = $this->processRecord($record);
133 $this->getHandler($record)->handle($record);
144 foreach ($records as $record) {
145 if ($this->isHandling($record)) {
146 $filtered[] = $record;
164 public function getHandler(array $record = null) argument
[all …]
/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/google/apiclient-services/src/Games/Resource/
H A DEvents.php86 public function record(EventRecordRequest $postBody, $optParams = []) function in Google\\Service\\Games\\Resource\\Events
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/
H A DActivationStrategyInterface.php28 public function isHandlerActivated(array $record): bool; argument
H A DChannelLevelActivationStrategy.php69 public function isHandlerActivated(array $record): bool argument
71 if (isset($this->channelToActionLevel[$record['channel']])) {
72 return $record['level'] >= $this->channelToActionLevel[$record['channel']];
75 return $record['level'] >= $this->defaultActionLevel;
H A DErrorLevelActivationStrategy.php42 public function isHandlerActivated(array $record): bool argument
44 return $record['level'] >= $this->actionLevel;

123456789