This commit is contained in:
Jeff Carr 2025-08-20 12:59:28 -05:00
parent 72b5864000
commit 5460316daf
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ func deleteProtobufFile(filename string) {
log.Log(WARN, "This file will be recreated on the next run.") log.Log(WARN, "This file will be recreated on the next run.")
err := os.Remove(filename) err := os.Remove(filename)
if err != nil { if err != nil {
log.Log(ERROR, "failed to remove old protobuf file", "err", err) log.Log(WARN, "failed to remove old protobuf file", "err", err)
} }
} }