![]()
Adds a handler to the logger. This doesn't use the event system because
we want to be able to add logging to the event system.
Arguments:
|
code » | |||||
![]()
Logs a message at the Level.SEVERE level.
If the logger is currently enabled for the given message level then the
given message is forwarded to all the registered output Handler objects.
Arguments:
|
code » | |||||
![]()
Logs a message at the Level.Fine level.
If the logger is currently enabled for the given message level then the
given message is forwarded to all the registered output Handler objects.
Arguments:
|
code » | |||||
Finds or creates a logger for a named subsystem. If a logger has already been
created with the given name it is returned. Otherwise a new logger is
created. If a new logger is created its log level will be configured based
on the goog.debug.LogManager configuration and it will configured to also
send logging output to its parent's handlers.
Arguments:
Returns: goog.log.Logger
The named logger or null if logging is disabled.
|
code » | |||||
![]()
Logs a message at the Level.INFO level.
If the logger is currently enabled for the given message level then the
given message is forwarded to all the registered output Handler objects.
Arguments:
|
code » | |||||
![]()
Logs a message. If the logger is currently enabled for the
given message level then the given message is forwarded to all the
registered output Handler objects.
Arguments:
|
code » | |||||
Removes a handler from the logger. This doesn't use the event system because
we want to be able to add logging to the event system.
Arguments:
Returns: boolean
Whether the handler was removed.
|
code » | |||||
![]()
Logs a message at the Level.WARNING level.
If the logger is currently enabled for the given message level then the
given message is forwarded to all the registered output Handler objects.
Arguments:
|
code » |