Skip to content

Commit

Permalink
chore(server): remove unused logger output
Browse files Browse the repository at this point in the history
  • Loading branch information
ADRFranklin committed Jun 5, 2024
1 parent 5423113 commit 7d930b6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions server/src/services/show/provider/fanart/fanart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,6 @@ export class FanartShowProvider implements ShowArtworkProvider {
);
return Ok(images);
} catch (error) {
this.logger.error(
{ showId: id, error },
'Failed to get show artwork: an error occurred',
);
if (error instanceof ApiError) {
if (error.status === 404) {
return Err(new NotFoundException('Show artwork not found'));
Expand Down

0 comments on commit 7d930b6

Please sign in to comment.