We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--log-level critical
1 parent 3cea512 commit d47c0feCopy full SHA for d47c0fe
src/core/log.ts
@@ -23,7 +23,7 @@ import { execProcess } from "./process.ts";
23
import { pandocBinaryPath } from "./resources.ts";
24
import { Block, pandoc } from "./pandoc/json.ts";
25
26
-export type LogLevel = "DEBUG" | "INFO" | "WARN" | "ERROR";
+export type LogLevel = "DEBUG" | "INFO" | "WARN" | "ERROR" | "CRITICAL";
27
28
export interface LogOptions {
29
log?: string;
@@ -461,6 +461,7 @@ const levelMap: Record<
461
info: "INFO",
462
warning: "WARN",
463
error: "ERROR",
464
+ critical: "CRITICAL",
465
};
466
467
export async function logPandocJson(
0 commit comments