disable file record as default

This commit is contained in:
tickstep 2024-03-17 14:30:06 +08:00
parent a02638272f
commit 82c62a2d51

View File

@ -299,7 +299,7 @@ func (c *PanConfig) initDefaultConfig() {
c.DeviceId = RandomDeviceId() // 生成默认客户端ID c.DeviceId = RandomDeviceId() // 生成默认客户端ID
c.DeviceName = DefaultDeviceName c.DeviceName = DefaultDeviceName
c.ClientId = DefaultClientId c.ClientId = DefaultClientId
c.FileRecordConfig = "1" // 默认开启 c.FileRecordConfig = "2" // 默认关闭
c.PreferIPType = "ipv4" // 默认优先IPv4 c.PreferIPType = "ipv4" // 默认优先IPv4
} }