summaryrefslogtreecommitdiff
path: root/src/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.go')
-rw-r--r--src/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.go b/src/main.go
index 6e413c8..7b693ee 100644
--- a/src/main.go
+++ b/src/main.go
@@ -3,14 +3,14 @@
package main
import (
- "fmt"
+ "log"
"time"
)
func main() {
+ log.Println("Starting birdscan")
for {
- fmt.Println("Hey!")
- time.Sleep(2 * time.Second)
+ time.Sleep(1 * time.Second)
}
}