Simplified timestamp functions

This commit is contained in:
Seednode 2022-09-11 20:05:55 -05:00
parent de398093b5
commit 67299a2808
2 changed files with 3 additions and 6 deletions

View File

@ -10,7 +10,7 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )
var Version = "0.5.0" var Version = "0.5.1"
func init() { func init() {
rootCmd.AddCommand(versionCmd) rootCmd.AddCommand(versionCmd)

View File

@ -95,11 +95,10 @@ func serveStaticFile(w http.ResponseWriter, r http.Request, paths []string) erro
} }
var startTime time.Time var startTime time.Time
var stopTime time.Time
if Verbose { if Verbose {
fmt.Printf("%v Serving file: %v", time.Now().Format(LOGDATE), filePath)
startTime = time.Now() startTime = time.Now()
fmt.Printf("%v Serving file: %v", startTime.Format(LOGDATE), filePath)
} }
buf, err := os.ReadFile(filePath) buf, err := os.ReadFile(filePath)
@ -110,9 +109,7 @@ func serveStaticFile(w http.ResponseWriter, r http.Request, paths []string) erro
w.Write(buf) w.Write(buf)
if Verbose { if Verbose {
stopTime = time.Now() fmt.Printf("- Finished in %v\n", time.Now().Sub(startTime).Round(time.Microsecond))
timeElapsed := stopTime.Sub(startTime).Round(time.Microsecond)
fmt.Printf("%v %v\n", " - Finished in", timeElapsed)
} }
return nil return nil