@putkoff/abstract-logger 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ export * from './logger';
@@ -0,0 +1 @@
1
+ export * from './logger';
@@ -0,0 +1,10 @@
1
+ /** ---------------------------------------------------------
2
+ * Core Logger
3
+ * --------------------------------------------------------- */
4
+ export declare const logger: import("winston").Logger;
5
+ /** Child logger factory */
6
+ export declare function createChildLogger(label: string): import("winston").Logger;
7
+ /** ---------------------------------------------------------
8
+ * ZERO-BOILERPLATE getLogString
9
+ * --------------------------------------------------------- */
10
+ export declare function getLogString(message: string, details?: any, logType?: "info" | "warn" | "error" | "debug", consumerLogger?: any): string;