Apologies in advance if this question has come up before and has
already been answered before. I'm developing a site using CB 3.1 and
have quite a bit of DI going on using wirebox. The more stuff I have
wired in the slower the site has become and I think the problem is
with wirebox, or more specifically how I'm using it. I would like to
get some debugging information out of wirebox using logbox, which I
already have configured. Is there something specific I need to add to
the logbox config to get the debugging info from wirebox. My logbox
config is:
//Logbox
logBox = {
// Define Appenders
appenders = {
coldboxFile = {
class="coldbox.system.logging.appenders.AsyncRollingFileAppender",
properties={filePath="logs",
fileName=coldbox.appname,
autoExpand=true,
fileMaxSize=2000,
fileMaxArchives=2
}
}
},
// Root Logger
root = { levelmax="DEBUG", appenders="*" },
// Implicit Level Categories
info = [ "coldbox.system" ]
};