@future-widget-lab/logger
Version:
A good enough logger for server-side oriented applications.
13 lines (12 loc) • 338 B
TypeScript
type ShouldDebugOptions = {
tag: string;
debugArgumentName: string;
allTag: string;
};
/**
* @description
* Use this helper to determine if the given tag should be logged as a debug log.
*/
export declare const shouldDebug: (options: ShouldDebugOptions) => boolean;
export type ShouldDebug = typeof shouldDebug;
export {};