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(); }