I feel that if a daemon is launched with custom arguments then the arguments should be shown in the output of `./bin/phd status`.
Currently, if I launch two daemons with `sudo ./bin/phd launch repository -- X` and `sudo ./bin/phd launch repository -- --not X`, then the output of `./bin/phd status` is as follows:
```
> ./bin/phd status
PID Started Daemon
18462 Apr 4 2014, 11:05:41 AM PhabricatorRepositoryPullLocalDaemon
18818 Apr 4 2014, 11:05:46 AM PhabricatorRepositoryPullLocalDaemon
```
Whereas I would prefer something similar to this:
```
> ./bin/phd status
PID Started Daemon Arguments
18462 Apr 4 2014, 11:05:41 AM PhabricatorRepositoryPullLocalDaemon X
18818 Apr 4 2014, 11:05:46 AM PhabricatorRepositoryPullLocalDaemon --not X
```