Browse Source

simplify log

Darien Raymond 7 năm trước cách đây
mục cha
commit
bc1979400e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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.