mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-14 02:20:53 +08:00
2.5.15
- 调整 LOG 说明
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user