Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LoggingConfig

import type { LoggingConfig } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";

The runtime logging config of the job.

interface LoggingConfig {
driverLogLevels?: {
[key: string]: "LEVEL_UNSPECIFIED" | "ALL" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "OFF";
}
;
}

§Properties

§
driverLogLevels?: {
[key: string]: "LEVEL_UNSPECIFIED" | "ALL" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL" | "OFF";
}
[src]

The per-package log levels for the driver. This can include "root" package name to configure rootLogger. Examples: - 'com.google = FATAL' - 'root = INFO' - 'org.apache = DEBUG'