homebridge-appletv-enhanced
Version:
Plugin that exposes the Apple TV to HomeKit with much richer features than the vanilla Apple TV implementation of HomeKit.
16 lines • 670 B
TypeScript
import type LogLevelLogger from './LogLevelLogger';
declare class PrefixLogger {
private readonly log;
private prefix;
constructor(log: LogLevelLogger | PrefixLogger, prefix: string);
debug(message: string, ...parameters: any[]): void;
error(message: string, ...parameters: any[]): void;
info(message: string, ...parameters: any[]): void;
setPrefix(value: string): void;
success(message: string, ...parameters: any[]): void;
verbose(message: string, ...parameters: any[]): void;
warn(message: string, ...parameters: any[]): void;
private extendMessage;
}
export default PrefixLogger;
//# sourceMappingURL=PrefixLogger.d.ts.map