From b60ac7f56afc0aa7e4691606e71fb79d6d1f7d9b Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sat, 16 Nov 2024 21:11:58 +0200 Subject: [PATCH] Change debug mode to be off by default --- scrapling/engines/toolbelt/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapling/engines/toolbelt/custom.py b/scrapling/engines/toolbelt/custom.py index 025efda..de34099 100644 --- a/scrapling/engines/toolbelt/custom.py +++ b/scrapling/engines/toolbelt/custom.py @@ -30,7 +30,7 @@ class Response(Adaptor): class BaseFetcher: def __init__( self, huge_tree: bool = True, keep_comments: Optional[bool] = False, auto_match: Optional[bool] = True, - storage: Any = SQLiteStorageSystem, storage_args: Optional[Dict] = None, debug: Optional[bool] = True, + storage: Any = SQLiteStorageSystem, storage_args: Optional[Dict] = None, debug: Optional[bool] = False, automatch_domain: Optional[str] = None, ): """Arguments below are the same from the Adaptor class so you can pass them directly, the rest of Adaptor's arguments