This commit is contained in:
Zack Scholl 2020-04-22 07:08:08 -07:00
parent cb522f2f06
commit 2e7708e3cd
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ func (c *Comm) Read() (buf []byte, numBytes int, bs []byte, err error) {
n, errRead := c.connection.Read(tmp)
if errRead != nil {
err = errRead
logger.Debug("initial read error: %s", err.Error())
logger.Debugf("initial read error: %s", err.Error())
return
}
header = append(header, tmp[:n]...)
@ -116,7 +116,7 @@ func (c *Comm) Read() (buf []byte, numBytes int, bs []byte, err error) {
n, errRead := c.connection.Read(tmp)
if errRead != nil {
err = errRead
logger.Debug("consecutive read error: %s", err.Error())
logger.Debugf("consecutive read error: %s", err.Error())
return
}
buf = append(buf, tmp[:n]...)