Skip to content

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
vedhavyas committed Oct 16, 2017
1 parent bcacbec commit 34ba499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minion.go
Expand Up @@ -95,7 +95,7 @@ func startMinion(ctx context.Context, m *minion) {
return
case mp := <-m.payloadCh:
m.busy = true
log.Printf("Crawling urls from depth %d\n", mp.currentDepth)
log.Printf("Crawling urls(%d) from depth %d\n", len(mp.urls), mp.currentDepth)
mds := crawlURLs(mp.currentDepth, mp.urls)
got := make(chan bool)
m.gruDumpCh <- &minionDumps{
Expand Down

0 comments on commit 34ba499

Please sign in to comment.