Variable LoggingConfigSchemaConst
LoggingConfigSchema: ZodObject<
{
level: ZodDefault<
ZodEnum<
{ error: "error"; debug: "debug"; info: "info"; warn: "warn" },
>,
>;
format: ZodDefault<ZodEnum<{ json: "json"; pretty: "pretty" }>>;
destination: ZodDefault<
ZodEnum<{ stdout: "stdout"; stderr: "stderr"; file: "file" }>,
>;
filePath: ZodOptional<ZodString>;
},
$strip,
> = ...
Logging configuration schema.