Procfile to LaunchAgent

Tags

Similar to the oslog-wrapper, should be able to write a Procfile manager that runs as a LaunchAgent and supports each sub process as a separate category.



main: /path/to/main
worker: /path/to/worker

Logger(subsystem: "com.example.app", category: "main")
Logger(subsystem: "com.example.app", category: "worker")

In this design, each subprocess would run as a child, getting its own Logger class to send data to, with an additional default category for the parent supervisor process.