* Retrieves a named logger, creating it in the process. This function will * implicitly create the requested logger, and any of its parents, if they * do not yet exist. * * The log level will be unspecified for newly created loggers. Use * Logger#setLevel(level) to explicitly set a leve
(name)
| 540 | * @return {!Logger} the requested logger. |
| 541 | */ |
| 542 | function getLogger(name) { |
| 543 | return logManager.getLogger(name) |
| 544 | } |
| 545 | |
| 546 | /** |
| 547 | * Pads a number to ensure it has a minimum of two digits. |