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 7bbdc79 commit 971139bCopy full SHA for 971139b
aws_xray_sdk/core/patcher.py
@@ -35,7 +35,6 @@ def patch_all(double_patch=False):
35
def patch(modules_to_patch, raise_errors=True):
36
modules = set()
37
for module_to_patch in modules_to_patch:
38
- print('adding {}'.format(module_to_patch))
39
# boto3 depends on botocore and patching botocore is sufficient
40
if module_to_patch == 'boto3':
41
modules.add('botocore')
@@ -67,7 +66,7 @@ def _patch_module(module_to_patch, raise_errors=True):
67
66
68
69
def _patch(module_to_patch):
70
- print('patching {}'.format(module_to_patch))
+
71
path = 'aws_xray_sdk.ext.%s' % module_to_patch
72
73
if module_to_patch in _PATCHED_MODULES:
0 commit comments