From d25dae2427e571bb8befa0d6cddb1e70853f3f9b Mon Sep 17 00:00:00 2001 From: Deon George Date: Thu, 27 Jun 2024 20:23:14 +1000 Subject: [PATCH] Make debug logging of binkd consistent with other logging statements --- app/Classes/Protocol/Binkp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Classes/Protocol/Binkp.php b/app/Classes/Protocol/Binkp.php index 94c4401..790139e 100644 --- a/app/Classes/Protocol/Binkp.php +++ b/app/Classes/Protocol/Binkp.php @@ -436,7 +436,7 @@ final class Binkp extends BaseProtocol } if (static::DEBUG) - Log::debug(sprintf('%s: - binkp_recv BUFFER [%d]',self::LOGKEY,strlen($this->rx_buf))); + Log::debug(sprintf('%s:- rx_buf size [%d]',self::LOGKEY,strlen($this->rx_buf))); $msg = ord(substr($this->rx_buf,0,1));