We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 347c7c8 commit 098a097Copy full SHA for 098a097
connectors/sources/s3.py
@@ -244,7 +244,6 @@ async def ping(self):
244
"""Verify the connection with AWS"""
245
try:
246
await self.s3_client.fetch_buckets()
247
- self._logger.debug("Successfully connected to AWS.")
248
except Exception:
249
self._logger.warning(
250
"Error while connecting to AWS. Please check the configurations"
@@ -304,6 +303,7 @@ async def get_docs(self, filtering=None):
304
303
Yields:
305
dictionary: Document from Amazon S3.
306
"""
+ self._logger.info("Successfully connected to AWS.")
307
if filtering and filtering.has_advanced_rules():
308
self._logger.info(
309
f"Advanced sync rules for S3 are configured: {filtering.get_advanced_rules()}"
0 commit comments