mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
20 lines
428 B
Go
20 lines
428 B
Go
package log
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/v2ray/v2ray-core/testing/unit"
|
|
)
|
|
|
|
func TestLogLevelSetting(t *testing.T) {
|
|
assert := unit.Assert(t)
|
|
|
|
assert.Pointer(debugLogger).Equals(noOpLoggerInstance)
|
|
SetLogLevel(DebugLevel)
|
|
assert.Pointer(debugLogger).Equals(streamLoggerInstance)
|
|
|
|
SetLogLevel(InfoLevel)
|
|
assert.Pointer(debugLogger).Equals(noOpLoggerInstance)
|
|
assert.Pointer(infoLogger).Equals(streamLoggerInstance)
|
|
}
|