Skip to content

Commit f4afd8c

Browse files
committed
Missing file
1 parent 2c5f217 commit f4afd8c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/apify/log.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)