Do you mean only once in the entire execution of the program or will you ever have a reset criteria that allows it to be displayed again? In either case, I recommend creating a wrapper class that you instantiate as a field with an embedded bool flag for each particular line you want to 'only once' display. If the string is known to be fixed (no parameters that alter it), you can also use a central service class that keeps a set of strings that have already been printed. The issue with this is that you can't log the same string from multiple locations.
One common general solution is an 'alarm manager', though I haven't seen a standardized library for this. It comes up frequently in my industry, however, as industrial machinery can enter a persistent alarm state and you want to log transitions into the alarm state, but not continually log that you're still in the alarm state. The solutions I've used/seen usually create a unique alarm code for each condition, with a 'set' and 'clear' notion, often with operator intervention required to acknowledge and finally clear the alarm.
foo()an event listener? Doing this will violate the expectations of whoever else uses the function – Cameron Apr 8 '11 at 16:04