Darien Raymond hace 7 años
padre
commit
bc1979400e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      common/log/log.go

+ 1 - 1
common/log/log.go

@@ -24,7 +24,7 @@ type GeneralMessage struct {
 
 // String implements Message.
 func (m *GeneralMessage) String() string {
-	return serial.Concat("[", m.Severity, "]: ", m.Content)
+	return serial.Concat("[", m.Severity, "] ", m.Content)
 }
 
 // Record writes a message into log stream.