1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00

simplify log

This commit is contained in:
Darien Raymond 2018-02-22 15:27:51 +01:00
parent 6b872c266c
commit bc1979400e
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -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.