2023-12-30 20:48:24 -06:00
|
|
|
package log
|
|
|
|
|
2024-01-04 12:34:04 -06:00
|
|
|
// a shortcut for sleep so you don't have to always change the import lines when debugging
|
2023-12-30 20:48:24 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
"errors"
|
|
|
|
"reflect"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
sleep() # you know what this does? sleeps for 1 second. yep. dump. easy.
|
|
|
|
sleep(.1) # you know what this does? yes, it sleeps for 1/10th of a second
|
|
|
|
*/
|
|
|
|
func Sleep(a ...any) {
|
|
|
|
if (a == nil) {
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-01-04 12:34:04 -06:00
|
|
|
Info("sleep", a[0])
|
2023-12-30 20:48:24 -06:00
|
|
|
|
|
|
|
switch a[0].(type) {
|
|
|
|
case int:
|
|
|
|
time.Sleep(time.Duration(a[0].(int)) * time.Second)
|
|
|
|
case float64:
|
|
|
|
time.Sleep(time.Duration(a[0].(float64) * 1000) * time.Millisecond)
|
|
|
|
default:
|
2024-01-04 12:34:04 -06:00
|
|
|
Info("sleep a[0], type = ", a[0], reflect.TypeOf(a[0]))
|
2023-12-30 20:48:24 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
exit() # yep. exits. I guess everything must be fine
|
|
|
|
exit(3) # I guess 3 it is then
|
|
|
|
exit("dont like apples") # ok. I'll make a note of that
|
|
|
|
*/
|
|
|
|
func Exit(a ...any) {
|
2024-01-04 12:34:04 -06:00
|
|
|
Error(errors.New("log.Exit()"), a)
|
2023-12-30 20:48:24 -06:00
|
|
|
//if (a) {
|
|
|
|
// os.Exit(a)
|
|
|
|
//}
|
|
|
|
os.Exit(0)
|
|
|
|
}
|