cmd/clef: suppress fsnotify error if keydir not exists (#28160)

As the keydir will be automatically created after an account is created, no error message if the watcher is failed.
This commit is contained in:
Daniel Liu 2025-01-14 10:56:15 +08:00
parent 4c7507af85
commit 3e880ef27d

View file

@ -20,6 +20,7 @@
package keystore
import (
"os"
"time"
"github.com/XinFinOrg/XDPoSChain/log"
@ -77,7 +78,9 @@ func (w *watcher) loop() {
}
defer watcher.Close()
if err := watcher.Add(w.ac.keydir); err != nil {
logger.Warn("Failed to watch keystore folder", "err", err)
if !os.IsNotExist(err) {
logger.Warn("Failed to watch keystore folder", "err", err)
}
return
}