Skip to content

Commit

Permalink
Fix Mapped Similar Artists log
Browse files Browse the repository at this point in the history
  • Loading branch information
deluan committed Feb 3, 2023
1 parent ad2ad51 commit 4a25e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/external_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ func (e *externalMetadata) callGetSimilar(ctx context.Context, agent agents.Arti
}
start := time.Now()
sa, err := e.mapSimilarArtists(ctx, similar, includeNotPresent)
log.Debug(ctx, "Mapped Similar Artists", "agent", "artist", artist.Name, "numSimilar", len(sa), "elapsed", time.Since(start))
log.Debug(ctx, "Mapped Similar Artists", "artist", artist.Name, "numSimilar", len(sa), "elapsed", time.Since(start))
if err != nil {
return
}
Expand Down

0 comments on commit 4a25e6d

Please sign in to comment.