diff --git a/cloudmesh/common/Host.py b/cloudmesh/common/Host.py index 0903212a..10b38146 100644 --- a/cloudmesh/common/Host.py +++ b/cloudmesh/common/Host.py @@ -328,7 +328,8 @@ def _ping(args): count_flag = '-n' if platform == 'windows' else '-c' command = ['ping', count_flag, count, ip] result = subprocess.run(command, capture_output=True) - + print(result) + print('THAT WAS RESULT!!!') try: timers = result.stdout \ .decode("utf-8", "ignore") \