I'm porting a Unix server application that writes logs to text file, typically generating about 15MB of logs per day; and the log file is rotated daily by a cron job. The porting is to be a Windows service application. 99% of the logging is informative or debug information about each request the server processes; but there can also be warning and error messages logged.
Is it considered normal or appropriate practice to do the entirety of this logging using the Event Log ? As opposed to, say, logging to a text file under %APPDATA% and only using the Event Log for service start/stop messages and serious errors?
Wasn't sure if this question best suited to SF or SO but let me know if it should be reposted elsewhere instead!