/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ /** * Defines the levels we allow for logging. This is honestly * entirely arbitrary, but ensures some level of consistency across * our production applications. */ export type Level = "debug" | "info" | "warn";