Similar to how logging is displayed when tui is disabled where every logs is showing, it would be nice if we can select which process/es to show logs.
Use Case:
I have custom script that utilize process-compose cli, e.g dev logs triggers fzf selection then show logs for the selected process, with this feature I can allow fzf --multi to show logs for those selected processes.
Best paired with --detach mode so I don't need to see all process logs,
Proposed Change:
process-compose process logs app,backend,web
Alternative Approaches
#!/bin/bash
process-compose process logs app --follow &
process-compose process logs engine --follow
# Wait for both commands to finish
wait
Feature Request
Similar to how logging is displayed when
tui
is disabled where every logs is showing, it would be nice if we can select which process/es to show logs.Use Case:
I have custom script that utilize
process-compose
cli, e.gdev logs
triggersfzf
selection then show logs for the selected process, with this feature I can allowfzf --multi
to show logs for those selected processes.Best paired with
--detach
mode so I don't need to see all process logs,Proposed Change:
Alternative Approaches