forked from p15670423/monkey
Agent: Remove debug print from handle_island_api_errors()
This commit is contained in:
parent
53dc34f895
commit
897d1e39ac
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue