Hi all,
Here's a style question for you. Our software has an integrated log window, where status/warning/error messages from all the various processes in the system can be viewed by the user. It's pretty standard stuff, and it looks something like this:
2009/07/08 12:15:39 [email protected] ERROR File foo.bar not found, aborting script 2009/07/08 12:15:45 [email protected] INFO Starting the job...
The question is, is it good style for the software processes to refer to themselves in the first person in these messages? For example, is the following message okay?
2009/07/08 12:16:00 [email protected] INFO I am now taking charge of the schnozz process.
The above seems fine to me; in fact it's very similar (in my opinion) to an IRC text-chat log, except that here the "chatters" are software processes instead of humans.
My co-worker, however, feels that it is inappropriate for a software process to refer to itself as "I", and would prefer something like this:
2009/07/08 12:16:00 [email protected] INFO bazdaemon is now taking charge of the schnozz process.
That seems a bit awkward and rendundant to me, but perhaps there is a good reason for it, or some sort of unstated convention that I'm unaware of.
Your thoughts?
-Jeremy