- 调整 LOG 说明
This commit is contained in:
EstrellaXD
2022-07-18 10:51:40 +08:00
parent 4c87caea5a
commit 97f078818a
4 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ class RSSAnalyser:
if bangumi_info is not []:
for d in bangumi_info:
if re.search(d["title_raw"], raw_title) is not None:
logger.debug(f"Had added {d['title_raw']} before")
logger.debug(f"Had added {d['title_raw']} in auto_download rule before")
extra_add = False
break
if extra_add:

View File

@@ -38,7 +38,7 @@ class RequestURL:
return req
except Exception as e:
logger.debug(f"URL: {url}")
logger.warning("ERROR with DNS/Connection.")
logger.warning("ERROR with Connection.Please check DNS/Connection settings")
time.sleep(settings.connect_retry_interval)
times += 1

View File

@@ -155,7 +155,7 @@ class RawParser:
name_en, name_zh, name_jp, season, sr, episode, \
sub, dpi, source, group = ret
except Exception as e:
logger.error(f"ERROR match {raw} {e}")
logger.error(f"Parser cannot analyse {raw} {e}")
return None
return Episode(name_en, name_zh, name_jp, season, sr, episode, sub, group, dpi, source)

View File

@@ -22,7 +22,7 @@ class TitleParser:
official_title, tmdb_season = None, None
try:
tmdb_info = self._tmdb_parser.tmdb_search(title)
logger.debug(f"TMDB Matched, title is {tmdb_info.title_zh}")
logger.debug(f"TMDB Matched, official title is {tmdb_info.title_zh}")
except Exception as e:
logger.warning("Not Matched with TMDB")
return title, season