solarwinds-apm
Version:
OpenTelemetry-based SolarWinds APM library
13 lines • 511 B
TypeScript
import { type DiagLogFunction, type DiagLogger } from "@opentelemetry/api";
import { type Configuration } from "./config.js";
/** Web logger that makes use of the browser console */
export declare class Logger implements DiagLogger {
#private;
readonly error: DiagLogFunction;
readonly warn: DiagLogFunction;
readonly info: DiagLogFunction;
readonly debug: DiagLogFunction;
readonly verbose: DiagLogFunction;
constructor(config: Configuration);
}
//# sourceMappingURL=logger.d.ts.map