• Creates a logger object based on input options. This is used to help separate and manage logs from submodules.

    const log = get_logger({id: "util"}) 
    log("brackets contain the submodule name") // => [util]:: brackets contain the submodule name

    Parameters

    Returns ((t: any) => void)

      • (t): void
      • Parameters

        • t: any

        Returns void