We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c5f217 commit f4afd8cCopy full SHA for f4afd8c
src/apify/log.py
@@ -0,0 +1,15 @@
1
+from __future__ import annotations
2
+
3
+import logging
4
5
+from crawlee._log_config import CrawleeLogFormatter
6
7
+# Name of the logger used throughout the library (resolves to 'apify')
8
+logger_name = __name__.split('.')[0]
9
10
+# Logger used throughout the library
11
+logger = logging.getLogger(logger_name)
12
13
14
+class ActorLogFormatter(CrawleeLogFormatter): # Inherited from parent class
15
+ pass
0 commit comments