UNPKG

gaunt-sloth-assistant

Version:

[![Tests and Lint](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/Galvanized-Pukeko/gaunt-sloth-assistant/actions/workflows/unit-tests.yml) [![Integration Tests](https://github.co

21 lines (20 loc) 616 B
/** * Initialize debug logging based on config */ export declare function initDebugLogging(enabled: boolean): void; /** * Log a debug message to the log file */ export declare function debugLog(message: string): void; /** * Log multiple lines with proper formatting */ export declare function debugLogMultiline(title: string, content: string): void; /** * Log an object using Node.js inspect with reasonable depth */ export declare function debugLogObject(title: string, obj: unknown): void; /** * Log error with stack trace */ export declare function debugLogError(context: string, error: unknown): void;