UNPKG

selenium-webdriver

Version:

The official WebDriver JavaScript bindings from the Selenium project

59 lines (57 loc) 29.3 kB
<!DOCTYPE html><meta charset="UTF-8"><meta http-equiv="Content-Language" content="en" /><title>goog.debug.Logger</title><link href="dossier.css" rel="stylesheet" type="text/css"><div id="main-wrapper"><input type="checkbox" id="sidenav-toggle" /><main><header><h1>Class goog.debug.Logger</h1><a class="source" href="source/lib/goog/debug/logger.js.src.html#l65">code &raquo;</a></header><section><p>The Logger is an object used for logging debug messages. Loggers are normally named, using a hierarchical dot-separated namespace. Logger names can be arbitrary strings, but they should normally be based on the package name or class name of the logged component, such as goog.net.BrowserChannel. The Logger object is loosely based on the java class java.util.logging.Logger. It supports different levels of filtering for different loggers. The logger object should never be instantiated by application code. It should always use the goog.debug.Logger.getLogger function.<h2>Constructor</h2><div class="ctor wrap-details public"><div><div class="ctor"><span class="member">goog.debug.Logger <span class="args">( name )</span></span></div><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>name: <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code><dd>The name of the Logger.</dl></table></div></div></div></section><section><h2>Classes</h2><div class="type-summary"><table><tbody><tr><td><dl><dt><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a><dd>The Level class defines a set of standard logging levels that can be used to control logging output.</dl></table></div></section><div id="visibility-controls"><b>Show:</b><label for="show-public"><span><input type="checkbox" id="show-public" checked/></span>Public</label><label for="show-protected"><span><input type="checkbox" id="show-protected"/></span>Protected</label><label for="show-private"><span><input type="checkbox" id="show-private"/></span>Private</label></div><section id="instance-methods"><h2>Instance Methods</h2><div class="wrap-details private"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l765">code &raquo;</a><span class="member"><a name="addChild_">addChild_</a> <span class="args">( name, logger )</span></span></div><p>Adds a child to this logger. This is used for setting up the logger tree.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>name: <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code><dd>The leaf name of the child.<dt>logger: <code class="type"><a href="class_goog_debug_Logger.html">goog.debug.Logger</a></code><dd>The child logger.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l400">code &raquo;</a><span class="member"><a name="addHandler">addHandler</a> <span class="args">( handler )</span></span></div><p>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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>handler: <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function">Function</a></code><dd>Handler function to add.</dl></table></div></details></div></div><div class="wrap-details private"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l740">code &raquo;</a><span class="member"><a name="callPublish_">callPublish_</a> <span class="args">( logRecord )</span></span></div><p>Calls the handlers for publish.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>logRecord: <code class="type"><a href="class_goog_debug_LogRecord.html">goog.debug.LogRecord</a></code><dd>The log record to publish.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l652">code &raquo;</a><span class="member"><a name="config">config</a> <span class="args">( msg, opt_exception )</span></span></div><p>Logs a message at the Logger.Level.CONFIG 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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>=</code><dd>An exception associated with the message.</dl></table></div></details></div></div><div class="wrap-details private"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l719">code &raquo;</a><span class="member"><a name="doLogRecord_">doLogRecord_</a> <span class="args">( logRecord )</span></span></div><p>Logs a LogRecord.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>logRecord: <code class="type"><a href="class_goog_debug_LogRecord.html">goog.debug.LogRecord</a></code><dd>A log record to log.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l666">code &raquo;</a><span class="member"><a name="fine">fine</a> <span class="args">( msg, opt_exception )</span></span></div><p>Logs a message at the Logger.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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>=</code><dd>An exception associated with the message.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l680">code &raquo;</a><span class="member"><a name="finer">finer</a> <span class="args">( msg, opt_exception )</span></span></div><p>Logs a message at the Logger.Level.FINER 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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>=</code><dd>An exception associated with the message.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l694">code &raquo;</a><span class="member"><a name="finest">finest</a> <span class="args">( msg, opt_exception )</span></span></div><p>Logs a message at the Logger.Level.FINEST 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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>=</code><dd>An exception associated with the message.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l448">code &raquo;</a><span class="member"><a name="getChildren">getChildren</a> <span class="args">( )</span> &rArr; <code class="type">!<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a></code></span></div><p>Returns the children of this logger as a map of the child name to the logger.</summary><div class="info"><table><tbody><tr><th>Returns<tr><td><dl>The map where the keys are the child leaf names and the values are the Logger objects.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l498">code &raquo;</a><span class="member"><a name="getEffectiveLevel">getEffectiveLevel</a> <span class="args">( )</span> &rArr; <code class="type"><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a></code></span></div><p>Returns the effective level of the logger based on its ancestors' levels.</summary><div class="info"><table><tbody><tr><th>Returns<tr><td><dl>The level.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l488">code &raquo;</a><span class="member"><a name="getLevel">getLevel</a> <span class="args">( )</span> &rArr; <code class="type"><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a></code></span></div><p>Gets the log level specifying which message levels will be logged by this logger. Message levels lower than this value will be discarded. The level value Level.OFF can be used to turn off logging. If the level is null, it means that this node should inherit its level from its nearest ancestor with a specific (non-null) level value.</summary><div class="info"><table><tbody><tr><th>Returns<tr><td><dl>The level.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l564">code &raquo;</a><span class="member"><a name="getLogRecord">getLogRecord</a> <span class="args">( level, msg, opt_exception, opt_fnStackContext )</span> &rArr; <code class="type">!<a href="class_goog_debug_LogRecord.html">goog.debug.LogRecord</a></code></span></div><p>Creates a new log record and adds the exception (if present) to it.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>level: <code class="type"><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a></code><dd>One of the level identifiers.<dt>msg: <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code><dd>The string message.<dt>opt_exception: <code class="type">(<a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>|<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a>)=</code><dd>An exception associated with the message.<dt>opt_fnStackContext: <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function">Function</a>=</code><dd>A function to use as the base of the stack trace used in the log record.</dl><tr><th>Returns<tr><td><dl>A log record.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l390">code &raquo;</a><span class="member"><a name="getName">getName</a> <span class="args">( )</span> &rArr; <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code></span></div><p>Gets the name of this logger.</summary><div class="info"><table><tbody><tr><th>Returns<tr><td><dl>The name of this logger.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l438">code &raquo;</a><span class="member"><a name="getParent">getParent</a> <span class="args">( )</span> &rArr; <code class="type"><a href="class_goog_debug_Logger.html">goog.debug.Logger</a></code></span></div><p>Returns the parent of this logger.</summary><div class="info"><table><tbody><tr><th>Returns<tr><td><dl>The parent logger or null if this is the root.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l638">code &raquo;</a><span class="member"><a name="info">info</a> <span class="args">( msg, opt_exception )</span></span></div><p>Logs a message at the Logger.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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>=</code><dd>An exception associated with the message.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l524">code &raquo;</a><span class="member"><a name="isLoggable">isLoggable</a> <span class="args">( level )</span> &rArr; <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></code></span></div><p>Checks if a message of the given level would actually be logged by this logger. This check is based on the Loggers effective level, which may be inherited from its parent.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>level: <code class="type"><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a></code><dd>The level to check.</dl><tr><th>Returns<tr><td><dl>Whether the message would be logged.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l539">code &raquo;</a><span class="member"><a name="log">log</a> <span class="args">( level, msg, opt_exception )</span></span></div><p>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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>level: <code class="type"><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a></code><dd>One of the level identifiers.<dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type">(<a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>|<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a>)=</code><dd>An exception associated with the message.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l707">code &raquo;</a><span class="member"><a name="logRecord">logRecord</a> <span class="args">( logRecord )</span></span></div><p>Logs a LogRecord. If the logger is currently enabled for the given message level then the given message is forwarded to all the registered output Handler objects.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>logRecord: <code class="type"><a href="class_goog_debug_LogRecord.html">goog.debug.LogRecord</a></code><dd>A log record to log.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l423">code &raquo;</a><span class="member"><a name="removeHandler">removeHandler</a> <span class="args">( handler )</span> &rArr; <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></code></span></div><p>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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>handler: <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function">Function</a></code><dd>Handler function to remove.</dl><tr><th>Returns<tr><td><dl>Whether the handler was removed.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l465">code &raquo;</a><span class="member"><a name="setLevel">setLevel</a> <span class="args">( level )</span></span></div><p>Set the log level specifying which message levels will be logged by this logger. Message levels lower than this value will be discarded. The level value Level.OFF can be used to turn off logging. If the new level is null, it means that this node should inherit its level from its nearest ancestor with a specific (non-null) level value.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>level: <code class="type"><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a></code><dd>The new level.</dl></table></div></details></div></div><div class="wrap-details private"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l754">code &raquo;</a><span class="member"><a name="setParent_">setParent_</a> <span class="args">( parent )</span></span></div><p>Sets the parent of this logger. This is used for setting up the logger tree.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>parent: <code class="type"><a href="class_goog_debug_Logger.html">goog.debug.Logger</a></code><dd>The parent logger.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l610">code &raquo;</a><span class="member"><a name="severe">severe</a> <span class="args">( msg, opt_exception )</span></span></div><p>Logs a message at the Logger.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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>=</code><dd>An exception associated with the message.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l596">code &raquo;</a><span class="member"><a name="shout">shout</a> <span class="args">( msg, opt_exception )</span></span></div><p>Logs a message at the Logger.Level.SHOUT 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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>=</code><dd>An exception associated with the message.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l624">code &raquo;</a><span class="member"><a name="warning">warning</a> <span class="args">( msg, opt_exception )</span></span></div><p>Logs a message at the Logger.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.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="namespace_goog_debug.html#goog.debug.Loggable">goog.debug.Loggable</a></code><dd>The message to log.<dt>opt_exception: <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Error">Error</a>=</code><dd>An exception associated with the message.</dl></table></div></details></div></div></section><section id="instance-properties"><h2>Instance Properties</h2><div class="wrap-details private"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l90">code &raquo;</a><span class="member"><a name="children_">children_</a> : <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a></code></span></div><p>Map of children loggers. The keys are the leaf names of the children and the values are the child loggers.</summary></details></div></div><div class="wrap-details private"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l96">code &raquo;</a><span class="member"><a name="handlers_">handlers_</a> : <code class="type"><a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Array">Array</a>.&lt;<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function">Function</a>&gt;</code></span></div><p>Handlers that are listening to this logger.</summary></details></div></div><div class="wrap-details private"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l83">code &raquo;</a><span class="member"><a name="level_">level_</a> : <code class="type"><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a></code></span></div><p>Level that this logger only filters above. Null indicates it should inherit from the parent.</summary></details></div></div><div class="wrap-details private"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l70">code &raquo;</a><span class="member"><a name="name_">name_</a> : <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code></span></div><p>Name of the Logger. Generally a dot-separated namespace</summary></details></div></div><div class="wrap-details private"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l76">code &raquo;</a><span class="member"><a name="parent_">parent_</a> : <code class="type"><a href="class_goog_debug_Logger.html">goog.debug.Logger</a></code></span></div><p>Parent Logger.</summary></details></div></div></section><section id="static-functions"><h2>Static Functions</h2><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l355">code &raquo;</a><span class="member deprecation-notice"><a name="goog.debug.Logger.getLogger">goog.debug.Logger.getLogger</a> <span class="args">( name )</span> &rArr; <code class="type">!<a href="class_goog_debug_Logger.html">goog.debug.Logger</a></code></span></div><div class="deprecation-notice">Deprecated: <span class="deprecation-reason">use goog.log instead. http://go/goog-debug-logger-deprecated</span></div><p>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 LogManager configuration and it will configured to also send logging output to its parent's handlers. It will be registered in the LogManager global namespace.</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>name: <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code><dd>A name for the logger. This should be a dot-separated name and should normally be based on the package name or class name of the subsystem, such as goog.net.BrowserChannel.</dl><tr><th>Returns<tr><td><dl>The named logger.</dl></table></div></details></div></div><div class="wrap-details public"><div><details class="function"><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l366">code &raquo;</a><span class="member"><a name="goog.debug.Logger.logToProfilers">goog.debug.Logger.logToProfilers</a> <span class="args">( msg )</span></span></div><p>Logs a message to profiling tools, if available. https://developers.google.com/web-toolkit/speedtracer/logging-api http://msdn.microsoft.com/en-us/library/dd433074(VS.85).aspx</summary><div class="info"><table><tbody><tr><th>Parameters<tr><td><dl><dt>msg: <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code><dd>The message to log.</dl></table></div></details></div></div></section><section id="static-properties"><h2>Static Properties</h2><div class="wrap-details public"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l101">code &raquo;</a><span class="member"><a name="goog.debug.Logger.ROOT_LOGGER_NAME">goog.debug.Logger.ROOT_LOGGER_NAME</a> : <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></code></span></div></summary></details></div></div><div class="wrap-details private"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l117">code &raquo;</a><span class="member"><a name="goog.debug.Logger.rootHandlers_">goog.debug.Logger.rootHandlers_</a> : <code class="type">!<a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Array">Array</a>.&lt;<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function">Function</a>&gt;</code></span></div></summary></details></div></div><div class="wrap-details private"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l124">code &raquo;</a><span class="member"><a name="goog.debug.Logger.rootLevel_">goog.debug.Logger.rootLevel_</a> : <code class="type"><a href="class_goog_debug_Logger_Level.html">goog.debug.Logger.Level</a></code></span></div></summary></details></div></div></section><section id="compiler-constants"><h2>Compiler Constants</h2><div class="wrap-details public"><div><details><summary><div><a class="source" href="source/lib/goog/debug/logger.js.src.html#l109">code &raquo;</a><span class="member"><a name="goog.debug.Logger.ENABLE_HIERARCHY">goog.debug.Logger.ENABLE_HIERARCHY</a> : <code class="type"><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean">boolean</a></code></span></div></summary></details></div></div></section></main><nav id="topnav"><div><div id="menubutton"><label for="sidenav-toggle">Menu</label></div><form id="searchbox"><div><input type="search" placeholder="Search" tabindex="1"></div></form></div></nav><nav id="sidenav"><input type="checkbox" id="sidenav-types-ctrl" /><input type="checkbox" id="sidenav-files-ctrl" /><input type="checkbox" id="sidenav-modules-ctrl" /><a id="sidenav-overview"><div><h4>Overview</h4></div></a><div id="sidenav-types"><label for="sidenav-types-ctrl"><h4>Types</h4></label><i>Loading</i></div><div id="sidenav-modules"><label for="sidenav-modules-ctrl"><h4>Modules</h4></label><i>Loading</i></div><div id="sidenav-files"><label for="sidenav-files-ctrl"><h4>Files</h4></label><i>Loading</i></div><a href="license.html"><div><h4>License</h4></div></a></nav><div id="push-footer"></div></div><footer><a href="https://github.com/jleyba/js-dossier">Generated by dossier</a></footer><script src="types.js"></script><script src="dossier.js"></script>