Added time to output with a time difference calculation. - Ultimateplayer1999

This commit is contained in:
ultimateplayer1999 2023-01-10 13:05:56 +01:00
parent 639ff3ceb7
commit e3bb9ddccb
Signed by: ultimateplayer1999
GPG Key ID: 690D4E43F8B51E51
3 changed files with 9 additions and 3 deletions

View File

@ -14,3 +14,5 @@ The following code is needed in a .env. This is for the DB connection.
> DB_PASS= > DB_PASS=
This is based on the phish table. Table can also be changed if needed. This is based on the phish table. Table can also be changed if needed.
Execution time is 1h24m16.934194673s. This was for 18811 records.

View File

@ -38,7 +38,7 @@ func main() {
StartTime := time.Now() StartTime := time.Now()
// Format the start time // Format the start time
formattedStartTime := StartTime.Format("10-01-2023 10:22:10") formattedStartTime := StartTime.Format("02-01-2006 15:04:05")
fmt.Println("Script started at " + formattedStartTime) fmt.Println("Script started at " + formattedStartTime)
// Perform a cleanup on DB // Perform a cleanup on DB
@ -103,6 +103,10 @@ func main() {
} }
defer resp.Body.Close() defer resp.Body.Close()
currentTime := time.Now()
formattedTime := currentTime.Format("02-01-2006 15:04:05")
fmt.Println(formattedTime + ": Initial database table setup done")
fmt.Println("Status code: ", resp.StatusCode) fmt.Println("Status code: ", resp.StatusCode)
body, err := ioutil.ReadAll(resp.Body) body, err := ioutil.ReadAll(resp.Body)
if err != nil { if err != nil {
@ -138,14 +142,14 @@ func main() {
EndTime := time.Now() EndTime := time.Now()
// Format the end time // Format the end time
formattedEndTime := EndTime.Format("10-01-2023 10:22:50") formattedEndTime := EndTime.Format("02-01-2006 15:04:05")
fmt.Println("Recent changes recieved and has been added to the database. Removed domains deleted from database. Reorded domains.") fmt.Println("Recent changes recieved and has been added to the database. Removed domains deleted from database. Reorded domains.")
fmt.Println("Script ended at " + formattedEndTime) fmt.Println("Script ended at " + formattedEndTime)
// Calculate the time difference // Calculate the time difference
diff := formattedEndTime.sub(formattedStartTime) diff := EndTime.Sub(StartTime)
// Print the time difference // Print the time difference
fmt.Println("Time until completion: ", diff) fmt.Println("Time until completion: ", diff)

Binary file not shown.