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/eventarc:v1.ts";

The configuration for Platform Telemetry logging for Eventarc Advanced resources.

interface LoggingConfig {
logSeverity?:
| "LOG_SEVERITY_UNSPECIFIED"
| "NONE"
| "DEBUG"
| "INFO"
| "NOTICE"
| "WARNING"
| "ERROR"
| "CRITICAL"
| "ALERT"
| "EMERGENCY";
}

§Properties

§
logSeverity?: "LOG_SEVERITY_UNSPECIFIED" | "NONE" | "DEBUG" | "INFO" | "NOTICE" | "WARNING" | "ERROR" | "CRITICAL" | "ALERT" | "EMERGENCY"
[src]

Optional. The minimum severity of logs that will be sent to Stackdriver/Platform Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.