missionpanel 1.4.2__tar.gz → 1.4.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {missionpanel-1.4.2 → missionpanel-1.4.3}/PKG-INFO +1 -1
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/example/rsshub.py +2 -1
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/example/ttrss.py +1 -1
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel.egg-info/PKG-INFO +1 -1
- {missionpanel-1.4.2 → missionpanel-1.4.3}/setup.py +1 -1
- {missionpanel-1.4.2 → missionpanel-1.4.3}/LICENSE +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/README.md +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/__init__.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/example/__init__.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/example/subprocess.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/handler/__init__.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/handler/handler.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/handler/parallal_handler.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/orm/__init__.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/orm/core.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/orm/handler.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/submitter/__init__.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/submitter/abc.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/submitter/asynchronous.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel/submitter/submitter.py +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel.egg-info/SOURCES.txt +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel.egg-info/dependency_links.txt +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel.egg-info/requires.txt +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/missionpanel.egg-info/top_level.txt +0 -0
- {missionpanel-1.4.2 → missionpanel-1.4.3}/setup.cfg +0 -0
@@ -1,4 +1,5 @@
|
|
1
1
|
import abc
|
2
|
+
import traceback
|
2
3
|
from typing import AsyncGenerator, List, Any
|
3
4
|
import httpx
|
4
5
|
import logging
|
@@ -30,7 +31,7 @@ class RSSHubSubmitter(AsyncSubmitter, metaclass=abc.ABCMeta):
|
|
30
31
|
if len(tags) > 0:
|
31
32
|
await self.add_tags(matchers, tags)
|
32
33
|
except Exception as e:
|
33
|
-
self.logger.warning(f'create mission failed, error: {e}')
|
34
|
+
self.logger.warning(f'create mission failed, error: {e}, traceback: {traceback.format_exc()}')
|
34
35
|
|
35
36
|
|
36
37
|
class RSSHubRootSubmitter(RSSHubSubmitter):
|
@@ -147,7 +147,7 @@ class TTRSSHubSubmitter(TTRSSSubmitter):
|
|
147
147
|
async for mission_content in self.parse_content_nocatch(feed, content, **httpx_client_options):
|
148
148
|
yield mission_content
|
149
149
|
except Exception as e:
|
150
|
-
self.logger.warning(f'parse content failed, error: {e}')
|
150
|
+
self.logger.warning(f'parse content failed, error: {e}, traceback: {traceback.format_exc()}')
|
151
151
|
|
152
152
|
|
153
153
|
class TTRSSHubRootSubmitter(TTRSSHubSubmitter):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|