Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
vortegatorres committed May 13, 2024
1 parent f7951f6 commit f7eaf23
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,15 +226,13 @@ func envInt(name string) int {
func envDuration(name string) time.Duration {
v, found := os.LookupEnv(name)
if !found {
println("HOLA not found")
return 0
}

println(v)

d, err := time.ParseDuration(v)
if err != nil {
println("HOLA error parsing duration")
return 0
}

Expand Down

0 comments on commit f7eaf23

Please sign in to comment.