diff --git a/functions/factory.buildDestinationFile.html b/functions/factory.buildDestinationFile.html index aa2afa1..0d59e33 100644 --- a/functions/factory.buildDestinationFile.html +++ b/functions/factory.buildDestinationFile.html @@ -1 +1 @@ -
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
npm install @foxxmd/logging
diff --git a/interfaces/index.LogOptions.html b/interfaces/index.LogOptions.html
index f2c582a..8092606 100644
--- a/interfaces/index.LogOptions.html
+++ b/interfaces/index.LogOptions.html
@@ -1,4 +1,4 @@
-Optional
fileSpecify the minimum log level to output to rotating files. If false
no log files will be created.
Optional
fileThe full path and filename to use for log files
+Optional
fileSpecify the minimum log level to output to rotating files. If false
no log files will be created.
Optional
fileThe full path and filename to use for log files
If using rolling files the filename will be appended with .N
(a number) BEFORE the extension based on rolling status
May also be specified using env LOG_PATH or a function that returns a string
'CWD/logs/app.log'
-Optional
consoleSpecify the minimum log level streamed to the console (or docker container)
-Generated using TypeDoc
Optional
consoleSpecify the minimum log level streamed to the console (or docker container)
+Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Const
Generated using TypeDoc
Const
Pre-defined pretty options for use with console/stream output
+const prettyConsole: PrettyOptions = prettyOptsFactory({sync: true})
+
+Generated using TypeDoc
Const
Generated using TypeDoc
Const
Pre-defined pretty options for use with file output
+const prettyFile: PrettyOptions = prettyOptsFactory({
colorize: false,
sync: false,
})
+
+Generated using TypeDoc
Const
Generated using TypeDoc
Const
Generated using TypeDoc
Const
Generated using TypeDoc
Const
A logger that ONLY logs to console at minimum 'debug' level. Useful for logging during startup before a loggerApp has been initialized
+const loggerDebug = buildLogger('debug', [buildDestinationStdout('debug')])
+
+Generated using TypeDoc
Const
Generated using TypeDoc
Const
A noop (no output) logger for use when testing a component that requires a Logger
+const loggerTest = buildLogger('silent', [buildDestinationStdout('debug')])
+
+Generated using TypeDoc
Default
-