UNPKG

probot

Version:

A framework for building GitHub Apps to automate and improve your workflow

8 lines (7 loc) 254 B
import type { Logger } from "pino"; import { type Options, type LogLevel } from "@probot/pino"; export type GetLogOptions = { level?: LogLevel; logMessageKey?: string; } & Options; export declare function getLog(options?: GetLogOptions): Logger;