runtimes/server-interface/logging.ts (8 lines of code) (raw):
import { LogLevel } from '../runtimes/util/loggingUtil'
/**
* The logging feature interface
*/
export type Logging = {
error: (message: string) => void
warn: (message: string) => void
info: (message: string) => void
log: (message: string) => void
debug: (message: string) => void
}