Ver Fonte

Syslog.Log - Remove redundant cast of msg.Line []byte to string as

it's a fmt.Sprintf responsibility.

Signed-off-by: Anton Tiurin <noxiouz@yandex.ru>
Anton Tiurin há 10 anos atrás
pai
commit
f2c7b4d743
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      daemon/logger/syslog/syslog.go

+ 1 - 1
daemon/logger/syslog/syslog.go

@@ -28,7 +28,7 @@ func New(tag string) (logger.Logger, error) {
 }
 
 func (s *Syslog) Log(msg *logger.Message) error {
-	logMessage := fmt.Sprintf("%s: %s", s.tag, string(msg.Line))
+	logMessage := fmt.Sprintf("%s: %s", s.tag, msg.Line)
 	if msg.Source == "stderr" {
 		return s.writer.Err(logMessage)
 	}