import "../../tailor-proto/src/tailor/v1/function_resource_pb.mjs"; //#region src/cli/shared/function-execution.d.ts /** * A structured log line recorded while a function execution ran. */ export interface FunctionLogEntryInfo { /** Log message */ message: string; /** Severity name such as `INFO`, `WARNING`, or `ERROR` */ severity: string; /** When the line was logged, or null when unknown */ timestamp: Date | null; } //#endregion