diff --git a/nzb2media/auto_process/music.py b/nzb2media/auto_process/music.py index 67c85e08..8681c10d 100644 --- a/nzb2media/auto_process/music.py +++ b/nzb2media/auto_process/music.py @@ -218,7 +218,7 @@ def process( and os.path.isdir(dir_name) and not os.path.dirname(dir_name) == dir_name ): - log.postprocess(f'Deleting failed files and folder {dir_name}') + log.debug(f'Deleting failed files and folder {dir_name}') remove_dir(dir_name) # Return as failed to flag this in the downloader. return ProcessResult.failure( diff --git a/nzb2media/managers/pymedusa.py b/nzb2media/managers/pymedusa.py index b3746b15..cf475fff 100644 --- a/nzb2media/managers/pymedusa.py +++ b/nzb2media/managers/pymedusa.py @@ -185,7 +185,7 @@ class PyMedusaApiV2(SickBeard): # Log Medusa's PP logs here. if response.get('output'): for line in response['output']: - log.postprocess(line) + log.debug(line) # For now this will most likely always be True. # In the future we could return an exit state for when the PP in diff --git a/nzb2media/managers/sickbeard.py b/nzb2media/managers/sickbeard.py index e877d39e..3a7b2f77 100644 --- a/nzb2media/managers/sickbeard.py +++ b/nzb2media/managers/sickbeard.py @@ -605,7 +605,7 @@ class SickBeard: for line in response.iter_lines(): if line: line = line.decode('utf-8') - log.postprocess(line) + log.debug(line) # if 'Moving file from' in line: # input_name = os.path.split(line)[1] # if 'added to the queue' in line: