Add more logging

This commit is contained in:
Gabriel Augendre 2018-11-20 10:29:28 +01:00
parent e8eb418e0b
commit f00529bb58
1 changed files with 3 additions and 0 deletions

View File

@ -93,6 +93,7 @@ func scrapeVideos(b *beat.Beat, bt *Youtubebeat, done chan bool) {
videoCollector.Visit(BaseUrl + BaseSuffix + bt.config.StartId)
videoCollector.Wait()
logp.Info("Done parsing all videos")
done <- true
}
@ -111,8 +112,10 @@ func (bt *Youtubebeat) Run(b *beat.Beat) error {
select {
case <-done:
logp.Info("Exiting on done parsing")
return nil
case <-bt.done:
logp.Info("Exiting on beat stop signal")
return nil
}
}