LogBox in a ColdBox Application
component{
function configure(){
logBox = {};
// Define Appenders
logBox.appenders = {
console = { class="coldbox.system.logging.appenders.DummyAppender" }
};
// Root Logger
logBox.root = {
levelmax="OFF",
levelMin="OFF",
appenders="*"
};
}
}Was this helpful?