Skip to content

Commit

Permalink
removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydvoss committed Aug 7, 2023
1 parent 72d9797 commit 09c4ee1
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def detect(self) -> "Resource":
attributes = {}
website_site_name = environ.get(_WEBSITE_SITE_NAME)
if website_site_name:
print(_WEBSITE_SITE_NAME)
attributes[ResourceAttributes.SERVICE_NAME] = website_site_name
attributes[ResourceAttributes.CLOUD_PROVIDER] = CloudProviderValues.AZURE.value
attributes[ResourceAttributes.CLOUD_PLATFORM] = CloudPlatformValues.AZURE_APP_SERVICE.value
Expand All @@ -44,7 +43,6 @@ def detect(self) -> "Resource":
if value:
attributes[key] = value

print(attributes)
return Resource(attributes)

def _get_azure_resource_uri(website_site_name):
Expand Down

0 comments on commit 09c4ee1

Please sign in to comment.