mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
536 B
33 lines
536 B
package internal
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"v2ray.com/core/common/serial"
|
|
)
|
|
|
|
type LogEntry interface {
|
|
fmt.Stringer
|
|
}
|
|
|
|
type ErrorLog struct {
|
|
Prefix string
|
|
Values []interface{}
|
|
}
|
|
|
|
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) String() string {
|
|
return strings.Join([]string{serial.ToString(v.From), v.Status, serial.ToString(v.To), serial.ToString(v.Reason)}, " ")
|
|
}
|