mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Better scrobble log message when buffer is disabled
This commit is contained in:
parent
77f6bc83ac
commit
26b5e6b1b4
1 changed files with 6 additions and 2 deletions
|
@ -90,7 +90,7 @@ func (p *playTracker) dispatchNowPlaying(ctx context.Context, userId string, tra
|
||||||
if !s.IsAuthorized(ctx, userId) {
|
if !s.IsAuthorized(ctx, userId) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
log.Debug(ctx, "Sending NowPlaying info", "scrobbler", name, "track", t.Title, "artist", t.Artist)
|
log.Debug(ctx, "Sending NowPlaying update", "scrobbler", name, "track", t.Title, "artist", t.Artist)
|
||||||
err := s.NowPlaying(ctx, userId, t)
|
err := s.NowPlaying(ctx, userId, t)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(ctx, "Error sending NowPlayingInfo", "scrobbler", name, "track", t.Title, "artist", t.Artist, err)
|
log.Error(ctx, "Error sending NowPlayingInfo", "scrobbler", name, "track", t.Title, "artist", t.Artist, err)
|
||||||
|
@ -171,7 +171,11 @@ func (p *playTracker) dispatchScrobble(ctx context.Context, t *model.MediaFile,
|
||||||
if !s.IsAuthorized(ctx, u.ID) {
|
if !s.IsAuthorized(ctx, u.ID) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
log.Debug(ctx, "Buffering scrobble", "scrobbler", name, "track", t.Title, "artist", t.Artist)
|
if conf.Server.DevEnableBufferedScrobble {
|
||||||
|
log.Debug(ctx, "Buffering scrobble", "scrobbler", name, "track", t.Title, "artist", t.Artist)
|
||||||
|
} else {
|
||||||
|
log.Debug(ctx, "Sending scrobble", "scrobbler", name, "track", t.Title, "artist", t.Artist)
|
||||||
|
}
|
||||||
err := s.Scrobble(ctx, u.ID, scrobble)
|
err := s.Scrobble(ctx, u.ID, scrobble)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error(ctx, "Error sending Scrobble", "scrobbler", name, "track", t.Title, "artist", t.Artist, err)
|
log.Error(ctx, "Error sending Scrobble", "scrobbler", name, "track", t.Title, "artist", t.Artist, err)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue