From 55727914f078fd57f239157e2119599eab955c9f Mon Sep 17 00:00:00 2001 From: Jan Buchar Date: Fri, 13 Feb 2026 13:58:07 +0100 Subject: [PATCH] fix: Make log levels consistent in ServiceLocator --- src/crawlee/_service_locator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crawlee/_service_locator.py b/src/crawlee/_service_locator.py index 7ec85fb4ad..c17a3a95c7 100644 --- a/src/crawlee/_service_locator.py +++ b/src/crawlee/_service_locator.py @@ -65,7 +65,7 @@ def get_event_manager(self) -> EventManager: if self._event_manager is None: logger.debug('No event manager set, implicitly creating and using default LocalEventManager.') if self._configuration is None: - logger.debug( + logger.warning( 'Implicit creation of event manager will implicitly set configuration as side effect. ' 'It is advised to explicitly first set the configuration instead.' )