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 8369ff9 commit d9137aaCopy full SHA for d9137aa
src/apify/_configuration.py
@@ -1,5 +1,6 @@
1
from __future__ import annotations
2
3
+import traceback
4
from datetime import datetime, timedelta
5
from decimal import Decimal
6
from logging import getLogger
@@ -417,6 +418,7 @@ def disable_browser_sandbox_on_platform(self) -> Self:
417
418
"""
419
if self.is_at_home and not self.disable_browser_sandbox:
420
self.disable_browser_sandbox = True
421
+ logger.info('Stack trace:\n%s', ''.join(traceback.format_stack()))
422
logger.warning('Actor is running on the Apify platform, `disable_browser_sandbox` was changed to True.')
423
return self
424
0 commit comments