X Tutup
Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 953 Bytes

File metadata and controls

21 lines (19 loc) · 953 Bytes

/** * A namespace of all functions, objects, and classes for debugging and testing * AnyChart Data Visualization Toolkit. * @ignoreDoc AntonS said remove namespace acgraph.debug * @namespace * @name anychart.graphics.debug */ anychart.graphics.debug;

/** * Returns a logger object for a given name. * If a logger object for the given name is already created, it will be found. Otherwise a new logger object * will be created. All created loggers are registered in the LogManager global namespace; the logging level * and event listener configuration are also copied from the LogManager {@see goog.debug.LogManager}. * @ignoreDoc AntonS said remove namespace acgraph.debug * @param {string} name A name for the logger. It should be based on the package name or the full class name * and should be divided by dots. For example, “anychart.graphics”. * @return {goog.log.Logger} The logger object. */ anychart.graphics.debug.getLogger;

X Tutup