Skip to content

Commit 971139b

Browse files
committed
ISSUE-80: Remove debug print statements
1 parent 7bbdc79 commit 971139b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

aws_xray_sdk/core/patcher.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ def patch_all(double_patch=False):
3535
def patch(modules_to_patch, raise_errors=True):
3636
modules = set()
3737
for module_to_patch in modules_to_patch:
38-
print('adding {}'.format(module_to_patch))
3938
# boto3 depends on botocore and patching botocore is sufficient
4039
if module_to_patch == 'boto3':
4140
modules.add('botocore')
@@ -67,7 +66,7 @@ def _patch_module(module_to_patch, raise_errors=True):
6766

6867

6968
def _patch(module_to_patch):
70-
print('patching {}'.format(module_to_patch))
69+
7170
path = 'aws_xray_sdk.ext.%s' % module_to_patch
7271

7372
if module_to_patch in _PATCHED_MODULES:

0 commit comments

Comments
 (0)