UNPKG

@papabravocorp/pluggable-logger

Version:

A pluggable logger for Node.js that writes structured logs to local file systems, Azure ADLS, or custom storage backends.

8 lines (7 loc) 308 B
import { StorageProvider, LogEntry } from '../storage'; export declare class AdlsProvider implements StorageProvider { private readonly container; private readonly fileSystemClient; constructor(accountUrl: string, credential: any, container: string); write(entry: LogEntry): Promise<void>; }