brunorozendo / log4jdbc-log4j2

Automatically exported from code.google.com/p/log4jdbc-log4j2
48 stars 39 forks source link

Improve documentation for log4jdbc.debug.stack.prefix #12

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The documentation says that you just need to add a ^ to the beginning of the 
former package prefix to make log4jdbc.debug.stack.prefix work as a regex, but 
I found that I had to add .* to the end, i.e.

log4jdbc.debug.stack.prefix=^org.mypackage

doesn't work but

log4jdbc.debug.stack.prefix=^org\.mypackage.*

does. It's somewhat obvious since the docs say that it's a regex, but the 
current language is a little misleading for users who aren't used to using them.

Original issue reported on code.google.com by sh...@axiomalaska.com on 28 Jan 2014 at 9:46

GoogleCodeExporter commented 8 years ago
Thanks for pointing this out, the documentation has been updated.

Original comment by frederic...@gmail.com on 11 Feb 2014 at 11:37