Agent: Remove debug print from handle_island_api_errors()

This commit is contained in:
Mike Salvatore 2022-09-20 14:45:17 -04:00
parent 53dc34f895
commit 897d1e39ac
1 changed files with 0 additions and 1 deletions

View File

@ -18,7 +18,6 @@ def handle_island_api_errors(func):
@wraps(func)
def wrapper(*args, **kwargs):
try:
print(args)
func(*args, **kwargs)
except IslandAPIError as err:
raise IslandCommunicationError(err)