What happens to messages printed to stdout and stderr from a Windows service? I know they\'re not going anywhere, but do they go down /dev/null? Is it possible that an appli
The output will effectively go to dev/null, and won't introduce a blocking issue. Now performance on the other-hand will be impacted, as it does take resources to write it out.
Ideally, you would be able to configure where logs end up. A nicely implemented service will allow for: