diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-06-09 14:33:43 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-06-09 14:33:43 -0400 |
commit | 3afea15a63274678ead2241b7a2e38e8f6df5c9f (patch) | |
tree | 60188b262dd7195e29893cf6d946e67971951d33 | |
parent | c0507308950bf7db65d1f6ee79ce9f67b61cbe0e (diff) | |
download | getwtxt-3afea15a63274678ead2241b7a2e38e8f6df5c9f.tar.gz |
start time added to help differentiate run sessions in log file
-rw-r--r-- | svc/svc.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svc/svc.go b/svc/svc.go index 3130c56..ae5f7e9 100644 --- a/svc/svc.go +++ b/svc/svc.go @@ -111,7 +111,8 @@ func Start() { ReadTimeout: 15 * time.Second, } - log.Printf("Listening on %v\n", portnum) + log.Printf("\nListening on %v\n", portnum) + log.Printf("\n:: getwtxt %v Started :: %v ::\n\n", getwtxt, time.Now().Format(time.RFC3339)) errLog("", server.ListenAndServe()) closeLog <- true |