revid: remove print statement

This commit is contained in:
Trek H 2021-02-11 13:35:11 +10:30
parent 0f9b06b266
commit 26bb498917
1 changed files with 0 additions and 1 deletions

View File

@ -143,7 +143,6 @@ func extractMeta(r string, log func(lvl int8, msg string, args ...interface{}))
log(logger.Warning, "No timestamp in reply") log(logger.Warning, "No timestamp in reply")
} else { } else {
log(logger.Debug, fmt.Sprintf("got timestamp: %v", t)) log(logger.Debug, fmt.Sprintf("got timestamp: %v", t))
fmt.Printf("got timestamp: %v, setting\n", t)
mts.RealTime.Set(time.Unix(int64(t), 0)) mts.RealTime.Set(time.Unix(int64(t), 0))
} }
} }