|
ColdBox Platform Version 2.6.4 | ||||
| FRAMES | |||||
WEB-INF.cftags.component
coldbox.system.FrameworkSupertype
coldbox.system.Plugin
coldbox.system.plugins.Logger
public class Logger
This is the frameworks Logger object. It is used for all logging facilities interfacing with LogBox and the ColdBox debugger.
| Constructor Summary | |
|---|---|
init(any controller)
Constructor |
|
| Method Summary | |
|---|---|
void |
debug(string Message, [string ExtraInfo=''])
I log a debug message |
private void |
emailBugReport(string bugReport)
Email a bug report |
void |
error(string Message, [string ExtraInfo=''])
I log an error message |
void |
fatal(string Message, [string ExtraInfo=''])
I log a fatal message |
Logger |
getLogger()
This coldbox apps's logger |
void |
info(string Message, [string ExtraInfo=''])
I log an information message |
void |
logEntry(string Severity, string Message, [string ExtraInfo=''])
Log a message to the LogBox |
void |
logError(string Message, [any ExceptionStruct='[runtime expression]'], [any ExtraInfo=''])
Log an error into the framework using arguments |
void |
logErrorWithBean(any ExceptionBean)
Log an error into the framework using a coldbox exceptionBean |
void |
tracer(string message, [any extraInfo=''])
Log a trace message to the ColdBox debugger panel, not LOGBOX |
void |
warn(string Message, [string ExtraInfo=''])
I log a warning message |
| Methods inherited from class WEB-INF.cftags.component |
|---|
|
| Constructor Detail |
|---|
public init(any controller)
controller| Method Detail |
|---|
public void debug(string Message, [string ExtraInfo=''])
Message - The message to log.ExtraInfo - Extra information to append.private void emailBugReport(string bugReport)
bugReport - The bug reportpublic void error(string Message, [string ExtraInfo=''])
Message - The message to log.ExtraInfo - Extra information to append.public void fatal(string Message, [string ExtraInfo=''])
Message - The message to log.ExtraInfo - Extra information to append.public Logger getLogger()
public void info(string Message, [string ExtraInfo=''])
Message - The message to log.ExtraInfo - Extra information to append.public void logEntry(string Severity, string Message, [string ExtraInfo=''])
Severity - Severity: fatal,error,warn,info,debug,traceMessage - The message to log.ExtraInfo - Extra information to append.public void logError(string Message, [any ExceptionStruct='[runtime expression]'], [any ExtraInfo=''])
MessageExceptionStruct - The CF cfcatch structure.ExtraInfopublic void logErrorWithBean(any ExceptionBean)
ExceptionBean - This is the exception beanpublic void tracer(string message, [any extraInfo=''])
message - Message to SendextraInfo - Extra Information to dump on the tracepublic void warn(string Message, [string ExtraInfo=''])
Message - The message to log.ExtraInfo - Extra information to append.
|
ColdBox Platform Version 2.6.4 | ||||
| FRAMES | |||||