use log() function instead of fmt.Fprintf(os.Stderr) in some places.

This commit is contained in:
fiatjaf
2024-09-22 19:04:21 -03:00
parent 3215726417
commit 43fe41df5d
4 changed files with 8 additions and 10 deletions

View File

@@ -222,7 +222,7 @@ var bunker = &cli.Command{
select {
case <-ctx.Done():
case <-time.After(time.Minute * 5):
fmt.Fprintf(os.Stderr, "\n")
log("\n")
printBunkerInfo()
}
}()