Fix typo in config logging

This commit is contained in:
2021-10-18 22:23:04 +02:00
parent fa8b577989
commit a69606e9aa
3 changed files with 4 additions and 2 deletions

View File

@@ -137,7 +137,8 @@ func (c *Config) DebugLog(logger *zap.SugaredLogger) {
logger.Debugw("Config",
"hostname", c.Hostname,
"rtmp_addr", c.RTMPListenAddr,
"http_enable", c.HTTPListenAddr,
"http_enable", c.HTTPServerEnable,
"http_addr", c.HTTPListenAddr,
"http_accesslog", c.HTTPAccessLogEnable,
"log_level", c.LogLevel)
}