Remove extraneous fmt.Println from beta-mode feature for pre-saving history entries

This commit is contained in:
David Dworken 2023-08-27 22:11:22 -07:00
parent 2490082088
commit 5e44159a0b
No known key found for this signature in database

View File

@ -103,7 +103,6 @@ func presaveHistoryEntry(ctx *context.Context) {
// Don't save commands that start with a space // Don't save commands that start with a space
return return
} }
fmt.Println(entry.Command)
startTime, err := parseCrossPlatformInt(os.Args[4]) startTime, err := parseCrossPlatformInt(os.Args[4])
lib.CheckFatalError(err) lib.CheckFatalError(err)
entry.StartTime = time.Unix(startTime, 0) entry.StartTime = time.Unix(startTime, 0)