Skip to content

Commit 0ead503

Browse files
committed
Remove debug print statements
1 parent 2ed5338 commit 0ead503

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

instana/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ def load(_):
4646
if "INSTANA_DEBUG" in os.environ:
4747
print("Instana: activated via AUTOWRAPT_BOOTSTRAP")
4848

49-
if "INSTANA_ENDPOINT_URL" in os.environ:
50-
print("load: detected lambda environment")
51-
5249

5350
def get_lambda_handler_or_default():
5451
"""

instana/singletons.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@
1111
span_recorder = None
1212

1313
if os.environ.get("INSTANA_ENDPOINT_URL", False):
14-
print("Lambda environment")
1514
agent = AWSLambdaAgent()
1615
span_recorder = AWSLambdaRecorder(agent)
1716
else:
18-
print("Standard host environment")
1917
agent = StandardAgent()
2018
span_recorder = StandardRecorder()
2119

0 commit comments

Comments
 (0)