mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
accept lower case log levels for the QUIC_GO_LOG_LEVEL flag
This commit is contained in:
parent
79c176692e
commit
9633ffa06f
2 changed files with 11 additions and 4 deletions
|
@ -108,6 +108,12 @@ var _ = Describe("Log", func() {
|
|||
Expect(logLevel).To(Equal(LogLevelDebug))
|
||||
})
|
||||
|
||||
It("reads debug", func() {
|
||||
os.Setenv(logEnv, "debug")
|
||||
readLoggingEnv()
|
||||
Expect(logLevel).To(Equal(LogLevelDebug))
|
||||
})
|
||||
|
||||
It("reads INFO", func() {
|
||||
os.Setenv(logEnv, "INFO")
|
||||
readLoggingEnv()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue