Skip to content

Commit

Permalink
Use the logger
Browse files Browse the repository at this point in the history
  • Loading branch information
vHanda committed May 13, 2022
1 parent a7fdb32 commit ab17f85
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions daemon/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package main

import (
"fmt"
"log"
"sync"

Expand Down Expand Up @@ -29,7 +28,7 @@ func (d *Daemon) run() {
for _, repoPath := range config.Repos {
wg.Add(1)

fmt.Println("Monitoring", repoPath)
logger.Info("Monitoring", repoPath)
go watchForChanges(&wg, repoPath)
}

Expand Down

0 comments on commit ab17f85

Please sign in to comment.