brett
unread,May 31, 2012, 8:52:46 PM5/31/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ColdBox Platform
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" ]
};