Class R.debug.ConsoleRef
The base class for all console objects. Each type of supported console outputs
its data differently. This class allows abstraction between the console and the
browser's console object so the Console can report to it.
Defined in: debug.console.js.
Constructor Attributes | Constructor Name and Description |
---|---|
Method Attributes | Method Name and Description |
---|---|
debug()
Write a debug message to the console.
|
|
error()
Write an error message to the console.
|
|
Get the class name of this object
|
|
info()
Write an info message to the console.
|
|
trace()
Dump a stack trace to the console.
|
|
warn()
Write a warning message to the console.
|
Method Detail
debug()
Write a debug message to the console. The arguments to the method call will be
concatenated into one string message.
error()
Write an error message to the console. The arguments to the method call will be
concatenated into one string message.
{String}
getClassName()
Get the class name of this object
- Returns:
- {String} The string "ConsoleRef"
info()
Write an info message to the console. The arguments to the method call will be
concatenated into one string message.
trace()
Dump a stack trace to the console.
warn()
Write a warning message to the console. The arguments to the method call will be
concatenated into one string message.