Skip to content

Commit

Permalink
Additional log adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Sep 11, 2024
1 parent 9c5dd85 commit 4d298b2
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -2460,15 +2460,15 @@ def db_update_single_series(
except AttributeError:
pass

self.logger.trace(
self.logger.debug(
"Updating database entry | %s | S%02dE%03d [Searched:%s][Upgrade:%s][QualityMet:%s][CustomFormatMet:%s]",
SeriesTitle.ljust(60, "."),
SeasonNumber,
EpisodeNumber,
searched,
upgrade,
QualityMet,
customFormatMet,
searched.ljust(5),
upgrade.ljust(5),
QualityMet.ljust(5),
customFormatMet.ljust(5),
)

if request:
Expand Down Expand Up @@ -2615,11 +2615,11 @@ def db_update_single_series(
except AttributeError:
pass

self.logger.trace(
self.logger.debug(
"Updating database entry | %s [Searched:%s][Upgrade:%s]",
Title.ljust(60, "."),
searched,
upgrade,
searched.ljust(5),
upgrade.ljust(5),
)

db_commands = self.series_file_model.insert(
Expand Down Expand Up @@ -2772,13 +2772,13 @@ def db_update_single_series(
if request:
to_update[self.model_file.IsRequest] = request

self.logger.trace(
self.logger.debug(
"Updating database entry | %s [Searched:%s][Upgrade:%s][QualityMet:%s][CustomFormatMet:%s]",
title.ljust(60, "."),
searched,
upgrade,
qualityMet,
customFormatMet,
searched.ljust(5),
upgrade.ljust(5),
qualityMet.ljust(5),
customFormatMet.ljust(5),
)

db_commands = self.model_file.insert(
Expand Down

0 comments on commit 4d298b2

Please sign in to comment.