Skip to content

Commit 68253aa

Browse files
committed
Add timestamp to track when simulator is detected.
1 parent 60584e0 commit 68253aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

iOS/testbed/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ async def find_device(initial_devices):
9090
await asyncio.sleep(1)
9191
elif len(new_devices) == 1:
9292
udid = new_devices.pop()
93-
print(f"Test simulator UDID: {udid}")
93+
print(f"{datetime.now():%Y%m%d %H%M%S}: New test simulator detected")
94+
print(f"UDID: {udid}")
9495
return udid
9596
else:
9697
exit(f"Found more than one new device: {new_devices}")

0 commit comments

Comments
 (0)