Question on different error logs, what goes where and if I have handlers misconfigured.
Templates
1. With a cferror in onRequestStart event - I get a redirect to a custom template that logs errors to disk - let's call it custom error store
2. Lucee web context error settings to point at a public error template
Logs
1. my custom error store
2. lucee web context error log
From observation - most goes into the the custom store via cferror's template, but some requests like server to server calls - say a call back from web service to my server that errors out - just end up in the lucee web error logs (presumably they bypass onRequestStart in some cases). Also I see compilation errors go into the lucee log plus other random java errors.
I try to harvest the important errors from all logs and aggregate them so don't miss important issues. Does it sound like I have things misconfigured, such that my errors are sprayed across the 2 logs? Or is this standard and I just have to improve my log parsing and monitoring.