[chore] Rename the testrig log level env var

This commit is contained in:
Daenney 2024-04-04 17:26:37 +02:00
parent 98cc855b0a
commit fee0a88a79

View file

@ -36,7 +36,7 @@ func InitTestConfig() {
func logLevel() string {
level := "error"
if lv := os.Getenv("GTS_TESTRIG_LOG_LEVEL"); lv != "" {
if lv := os.Getenv("GTS_LOG_LEVEL"); lv != "" {
level = lv
}
return level