fix frps --log_file useless, fix #1125

This commit is contained in:
fatedier 2019-03-15 15:37:17 +08:00
parent d1f1c72a55
commit 6b61cb3742
1 changed files with 2 additions and 2 deletions

View File

@ -187,9 +187,9 @@ func parseServerCommonCfgFromCmd() (err error) {
g.GlbServerCfg.MaxPortsPerClient = maxPortsPerClient g.GlbServerCfg.MaxPortsPerClient = maxPortsPerClient
if logFile == "console" { if logFile == "console" {
g.GlbClientCfg.LogWay = "console" g.GlbServerCfg.LogWay = "console"
} else { } else {
g.GlbClientCfg.LogWay = "file" g.GlbServerCfg.LogWay = "file"
} }
return return
} }