Skip to content

Commit

Permalink
reduce log-level severity for missing FullTvShowMeta
Browse files Browse the repository at this point in the history
  • Loading branch information
dularion committed Feb 25, 2017
1 parent bf77437 commit 8a842ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grails-app/domain/streama/TvShow.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ class TvShow {
try{
return theMovieDbService.getFullTvShowMeta(this.apiId)
}catch (e){
log.error("couldnt get FullTvShowMeta for ${this.apiId}")
log.error(e.message)
log.warn("couldnt get FullTvShowMeta for ${this.apiId}")
log.warn(e.message)
return null
}
}
Expand Down

0 comments on commit 8a842ad

Please sign in to comment.