/** * Logger utility for upload task module * Provides centralized logging control */ /** * Enable or disable debug logging */ export declare function setDebugMode(enabled: boolean): void; /** * Check if debug mode is enabled */ export declare function isDebugEnabled(): boolean; /** * Log debug message */ export declare function logDebug(module: string, message: string, ...args: any[]): void; /** * Log warning message (always shown) */ export declare function logWarn(module: string, message: string, ...args: any[]): void; /** * Log error message (always shown) */ export declare function logError(module: string, message: string, ...args: any[]): void;