Logger.getChild(subcategory: ): Logger
Get a child logger with the given subcategory.
const logger = getLogger("category"); const subLogger = logger.getChild("sub-category");
The above code is equivalent to:
const logger = getLogger("category"); const subLogger = getLogger(["category", "sub-category"]);
The child logger.