Skip to content

Commit

Permalink
fix: run cs:fix
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
  • Loading branch information
marcelklehr committed Jan 24, 2025
1 parent 5d94a23 commit 97e331b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Service/DiagnosticService.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private function setBackgroundJobDiagnostics(array $value): void {
* @return void
*/
public function sendJobTrigger(string $class, int $id): void {
$this->logger->info('CONTEXT_CHAT_DIAGNOSTICS: ' . $class . ' ' . $id . ' triggered');
$this->logger->info('CONTEXT_CHAT_DIAGNOSTICS: ' . $class . ' ' . $id . ' triggered');
$key = $class . '-' . $id;
try {
$diagnostics = $this->getBackgroundJobDiagnostics();
Expand All @@ -63,7 +63,7 @@ public function sendJobTrigger(string $class, int $id): void {
* @return void
*/
public function sendJobStart(string $class, int $id): void {
$this->logger->info('CONTEXT_CHAT_DIAGNOSTICS: ' . $class . ' ' . $id . ' started');
$this->logger->info('CONTEXT_CHAT_DIAGNOSTICS: ' . $class . ' ' . $id . ' started');
$key = $class . '-' . $id;
try {
$diagnostics = $this->getBackgroundJobDiagnostics();
Expand All @@ -88,7 +88,7 @@ public function sendJobStart(string $class, int $id): void {
* @return void
*/
public function sendJobEnd(string $class, int $id): void {
$this->logger->info('CONTEXT_CHAT_DIAGNOSTICS: ' . $class . ' ' . $id . ' ended');
$this->logger->info('CONTEXT_CHAT_DIAGNOSTICS: ' . $class . ' ' . $id . ' ended');
$key = $class . '-' . $id;
try {
$diagnostics = $this->getBackgroundJobDiagnostics();
Expand All @@ -108,7 +108,7 @@ public function sendJobEnd(string $class, int $id): void {
* @return void
*/
public function sendHeartbeat(string $class, int $id): void {
$this->logger->info('CONTEXT_CHAT_DIAGNOSTICS: ' . $class . ' ' . $id . ' running');
$this->logger->info('CONTEXT_CHAT_DIAGNOSTICS: ' . $class . ' ' . $id . ' running');
$key = $class . '-' . $id;
try {
$diagnostics = $this->getBackgroundJobDiagnostics();
Expand Down

0 comments on commit 97e331b

Please sign in to comment.