Hi folks,
What's the best way to monitor exception logging in production environment? I have an application where in exceptions are logged to a text file. Everytime, i need access to these log files, i got to request backoffice team to send me a copy.
To improvise this process, i have thought of few options:
1) Email the error logs on a regular basis
2) Store the log file in database
3) Create some sort of listener objects to monitor logs (is this even possible?)
Is there a better option & how to implement one?
TIA