1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 18:17:52 -05:00
v2fly/common/log/internal/log_entry.go
2016-12-04 09:10:47 +01:00

48 lines
765 B
Go

package internal
import (
"fmt"
"strings"
"v2ray.com/core/common"
"v2ray.com/core/common/serial"
)
type LogEntry interface {
common.Releasable
fmt.Stringer
}
type ErrorLog struct {
Prefix string
Values []interface{}
}
func (v *ErrorLog) Release() {
for index := range v.Values {
v.Values[index] = nil
}
v.Values = nil
}
func (v *ErrorLog) String() string {
return v.Prefix + serial.Concat(v.Values...)
}
type AccessLog struct {
From interface{}
To interface{}
Status string
Reason interface{}
}
func (v *AccessLog) Release() {
v.From = nil
v.To = nil
v.Reason = nil
}
func (v *AccessLog) String() string {
return strings.Join([]string{serial.ToString(v.From), v.Status, serial.ToString(v.To), serial.ToString(v.Reason)}, " ")
}