Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-05-17 17:52:15 +0300
committerJoas Schilling <coding@schilljs.com>2022-07-01 12:06:08 +0300
commita328ed2a5bcd9302ab1d1da937ee645c32ab54b6 (patch)
tree56b5a52353c79d098099cf938220c0ecc72a7119
parent5154abb4d9e98054f7309f58248ddc7c32c0f429 (diff)
Adjust log message
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/Controller/SignalingController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Controller/SignalingController.php b/lib/Controller/SignalingController.php
index ad9c0dec5..4f9bc62ba 100644
--- a/lib/Controller/SignalingController.php
+++ b/lib/Controller/SignalingController.php
@@ -746,9 +746,9 @@ class SignalingController extends OCSController {
'version' => '1.0',
],
];
- $this->logger->debug('Pinged {numSessions} sessions in room {token}', [
+ $this->logger->debug('Pinged {numSessions} sessions {token}', [
'numSessions' => count($pingSessionIds),
- 'token' => $request['roomid'] ?? 'N/A',
+ 'token' => !empty($request['roomid']) ? ('in room ' . $request['roomid']) : '',
'app' => 'spreed-hpb',
]);
return new DataResponse($response);