From 5fd665b93ecdd4c66cc396ac018901426c782f3e Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Tue, 27 Nov 2018 09:17:39 +0100 Subject: [PATCH] wip --- src/Server/Logger/ConnectionLogger.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Server/Logger/ConnectionLogger.php b/src/Server/Logger/ConnectionLogger.php index 6bcba62..ef42b5e 100644 --- a/src/Server/Logger/ConnectionLogger.php +++ b/src/Server/Logger/ConnectionLogger.php @@ -29,14 +29,14 @@ class ConnectionLogger extends Logger implements ConnectionInterface public function send($data) { - $this->info("{$this->connection->client->appId}: connection id {$this->connection->socketId} sending message {$data}"); + $this->info("Connection id {$this->connection->socketId} sending message {$data}"); $this->connection->send($data); } public function close() { - $this->warn("{$this->connection->client->appId}: connection id {$this->connection->socketId} closing."); + $this->warn("Connection id {$this->connection->socketId} closing."); $this->connection->close(); }