> Hi,
>
[quoted text clipped - 10 lines]
> any of you guys recommend any possible alternatives/workarounds for
> this?
Rather than developing a new logger component, have you already had a look
at Log4j (http://logging.apache.org/log4j/docs/) ?
It's fast, reliable, open-source, rather easy to setup and use, and it has
already proven it's use in various projects.
As for the high volumes, here's a bit of text from the website itself:
"Actual logging is also quite fast, ranging from 21 microseconds using the
SimpleLayout, 37 microseconds using the TTCCLayout." .
For a "quick and dirty" logger, the SimpleLayout is more than sufficient.
If you're really interested in a smaller, simpler logger, just reply, I'll
dig one up.
Regards,
JC
--
http://jcsnippets.atspace.com
a collection of source code, tips and tricks
Chris Korhonen - 26 Jan 2006 10:54 GMT
Cheers, I'm actually looking at Log4J at the moment, and it looks likes
it will do everything I need, I may even strip it down a bit just too
simplify things even more.
I'll see how it copes with the input, as I said I'll be building this
into a JSP function initially, possibly migrating to servlet later on.
I'm just a tad concerned as it will be recieving potentially
simultanious requests.
Thanks again