fix: logger was set to info for the wrong logs (#3354)

pull/3356/head
Brandon Cohen 1 year ago committed by GitHub
parent ae3818304b
commit c36a4ba2b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -601,7 +601,7 @@ class AvailabilitySync {
//if true, media exists in at least one radarr or plex instance.
if (existsInRadarr) {
logger.info(
logger.warn(
`${media.tmdbId} exists in at least one radarr or plex instance. Media will be updated if set to available.`,
{
label: 'AvailabilitySync',
@ -621,7 +621,7 @@ class AvailabilitySync {
//if true, media exists in at least one sonarr or plex instance.
if (existsInSonarr) {
logger.info(
logger.warn(
`${media.tvdbId} exists in at least one sonarr or plex instance. Media will be updated if set to available.`,
{
label: 'AvailabilitySync',
@ -685,7 +685,7 @@ class AvailabilitySync {
);
if (existsInSonarr) {
logger.info(
logger.warn(
`${media.tvdbId}, season: ${season.seasonNumber} exists in at least one sonarr or plex instance. Media will be updated if set to available.`,
{
label: 'AvailabilitySync',

Loading…
Cancel
Save