expresscheckout-nodejs
Version:
Juspay's official expresscheckout-nodejs sdk
14 lines (13 loc) • 517 B
TypeScript
import winston from 'winston';
import { IJuspayLogger } from './types/index.js';
export declare class DefaultJuspayLogger {
static secretFields: string[];
static getLibraryLoggerInterface(): typeof winston;
/**
* @param resource string to populate resource entity
* @returns IJuspayLogger
*/
static getLoggerInstance(resource: string): IJuspayLogger;
static getSilentLogger(): IJuspayLogger;
static redactFields(data: unknown, secrets?: any[], redactedMessage?: string): any;
}