fix: env binding in oneshot and less output from dummy

This commit is contained in:
2023-12-09 09:58:49 +00:00
parent b589fb8f0c
commit 2eae19f64c
4 changed files with 25 additions and 18 deletions

View File

@@ -7,11 +7,10 @@ import (
)
func main() {
for i := 0; i < 10; i++ {
log.Println("using log.Println")
fmt.Println("using fmt.Println")
time.Sleep(time.Millisecond * 500)
}
log.Println("using log.Println")
fmt.Println("using fmt.Println")
time.Sleep(time.Second * 5)
log.Println("log: finishing up")
fmt.Println("fmt: finishing up")