Better logging
This commit is contained in:
parent
1a705d4319
commit
92682f65d8
1 changed files with 2 additions and 1 deletions
|
|
@ -54,13 +54,14 @@ func (s *scrobbler) detectSkipped(playerId int, trackId string) {
|
|||
diff := np.Start.Sub(prev.Start)
|
||||
if diff < minSkipped || diff > maxSkipped {
|
||||
prev = np
|
||||
beego.Debug(fmt.Sprintf("-- Playtime for track %s was %v. Not skipping.", prev.TrackId, diff))
|
||||
continue
|
||||
}
|
||||
err = s.itunes.MarkAsSkipped(prev.TrackId, prev.Start.Add(time.Duration(1)*time.Minute))
|
||||
if err != nil {
|
||||
beego.Warn("Error skipping track", prev.TrackId)
|
||||
} else {
|
||||
beego.Debug("Skipped track", prev.TrackId)
|
||||
beego.Debug("-- Skipped track", prev.TrackId)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue