fix: fix wrong log type

This commit is contained in:
JustSong 2024-04-21 14:36:48 +08:00
parent a873cbd392
commit 129282f4a9

View File

@ -71,7 +71,7 @@ func main() {
}
if config.MemoryCacheEnabled {
logger.SysLog("memory cache enabled")
logger.SysError(fmt.Sprintf("sync frequency: %d seconds", config.SyncFrequency))
logger.SysLog(fmt.Sprintf("sync frequency: %d seconds", config.SyncFrequency))
model.InitChannelCache()
}
if config.MemoryCacheEnabled {