Skip to content

Commit c26e9b7

Browse files
authored
Log when BAZEL_APPLE_LAUNCH_INFO_PATH finishes writing (#2871)
1 parent 64855d1 commit c26e9b7

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

apple/internal/templates/apple_device.template.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,9 @@ def launch_app(
501501
},
502502
indent=2,
503503
))
504+
logger.info(
505+
"Successfully written launch info to: %s", launch_info_path
506+
)
504507
else:
505508
logger.error("Failed to find PID in JSON output")
506509
except Exception as e:

apple/internal/templates/apple_simulator.template.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -809,6 +809,9 @@ def launch_app(
809809
},
810810
indent=2,
811811
))
812+
logger.info(
813+
"Successfully written launch info to: %s", launch_info_path
814+
)
812815
except Exception as e:
813816
logger.error("Failed to write launch info to file: %s", e)
814817
else:

0 commit comments

Comments
 (0)