-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConsoleCommandLogger.php
More file actions
125 lines (100 loc) · 2.85 KB
/
ConsoleCommandLogger.php
File metadata and controls
125 lines (100 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
// SPDX-FileCopyrightText: 2025 Lennart Dohmann <lennart.dohmann@gdata.de>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace OCA\GDataVaas\Logging;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ConsoleCommandLogger implements LoggerInterface {
private LoggerInterface $inner;
private OutputInterface $consoleOutput;
public function __construct(LoggerInterface $inner, OutputInterface $consoleOutput) {
$this->inner = $inner;
$this->consoleOutput = $consoleOutput;
}
/**
* @param $message
* @param array $context
* @return void
*/
public function emergency($message, array $context = []): void {
$this->consoleOutput->writeln("<error>[emergency] $message</error>");
$this->inner->emergency($message, $context);
}
/**
* @param $message
* @param array $context
* @return void
*/
public function alert($message, array $context = []): void {
$this->consoleOutput->writeln("<error>[alert] $message</error>");
$this->inner->alert($message, $context);
}
/**
* @param $message
* @param array $context
* @return void
*/
public function critical($message, array $context = []): void {
$this->consoleOutput->writeln("<error>[critical] $message</error>");
$this->inner->critical($message, $context);
}
/**
* @param $message
* @param array $context
* @return void
*/
public function error($message, array $context = []): void {
$this->consoleOutput->writeln("<error>[error] $message</error>");
$this->inner->error($message, $context);
}
/**
* @param $message
* @param array $context
* @return void
*/
public function warning($message, array $context = []): void {
$this->consoleOutput->writeln("[warning] $message");
$this->inner->warning($message, $context);
}
/**
* @param $message
* @param array $context
* @return void
*/
public function notice($message, array $context = []): void {
$this->consoleOutput->writeln("<info>[notice] $message</info>");
$this->inner->notice($message, $context);
}
/**
* @param $message
* @param array $context
* @return void
*/
public function info($message, array $context = []): void {
$this->consoleOutput->writeln("<info>[info] $message</info>");
$this->inner->info($message, $context);
}
/**
* @param $message
* @param array $context
* @return void
*/
public function debug($message, array $context = []): void {
if ($this->consoleOutput->getVerbosity() < OutputInterface::VERBOSITY_DEBUG) {
return;
}
$this->consoleOutput->writeln("[debug] $message");
$this->inner->debug($message, $context);
}
/**
* @param $level
* @param $message
* @param array $context
* @return void
*/
public function log($level, $message, array $context = []): void {
$this->consoleOutput->writeln("<info>[log] $message</info>");
$this->inner->log($level, $message, $context);
}
}