Make debug logging of binkd consistent with other logging statements

This commit is contained in:
Deon George 2024-06-27 20:23:14 +10:00
parent cfb408766f
commit d25dae2427

View File

@ -436,7 +436,7 @@ final class Binkp extends BaseProtocol
} }
if (static::DEBUG) 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)); $msg = ord(substr($this->rx_buf,0,1));