* 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)
| 505 | * @return {!Logger} the requested logger. |
| 506 | */ |
| 507 | function getLogger(name) { |
| 508 | return logManager.getLogger(name) |
| 509 | } |
| 510 | |
| 511 | /** |
| 512 | * Pads a number to ensure it has a minimum of two digits. |