Log level: none

pull/131/head
v2ray 2016-04-29 11:36:27 +02:00
parent 8b71647b9d
commit cef5386a21
2 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,7 @@ const (
InfoLevel = LogLevel(1)
WarningLevel = LogLevel(2)
ErrorLevel = LogLevel(3)
NoneLevel = LogLevel(999)
)
type errorLog struct {

View File

@ -76,6 +76,8 @@ func (this *LogConfig) UnmarshalJSON(data []byte) error {
this.LogLevel = log.InfoLevel
case "error":
this.LogLevel = log.ErrorLevel
case "none":
this.LogLevel = log.NoneLevel
default:
this.LogLevel = log.WarningLevel
}