diff --git a/.gitignore b/.gitignore index f4d432a..b66697d 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ # Dependency directories (remove the comment below to include it) # vendor/ +.idea diff --git a/print.go b/print.go new file mode 100644 index 0000000..f067211 --- /dev/null +++ b/print.go @@ -0,0 +1,7 @@ +package log + +import "time" + +func Print() { + Infof(time.Now().UTC().Format(time.RFC3339)) +}