mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-12-29 01:06:35 +08:00
时钟同步错误提示改成警告
This commit is contained in:
@@ -31,7 +31,7 @@ func init() {
|
||||
goman.New(func() {
|
||||
err := sharedClockManager.Sync()
|
||||
if err != nil {
|
||||
remotelogs.Error("CLOCK", "sync clock failed: "+err.Error())
|
||||
remotelogs.Warn("CLOCK", "sync clock failed: "+err.Error())
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -51,7 +51,7 @@ func (this *ClockManager) Start() {
|
||||
for range ticker.C {
|
||||
err := this.Sync()
|
||||
if err != nil {
|
||||
remotelogs.Error("CLOCK", "sync clock failed: "+err.Error())
|
||||
remotelogs.Warn("CLOCK", "sync clock failed: "+err.Error())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user