Optional
destinationAn optional function to use to print each log line.
If this is specified, basicLogger
calls it to write each line of output. The
argument is a fully formatted log line, not including a linefeed. The function
is only called for log levels that are enabled.
If not specified, the default is console.error
.
Setting this property to anything other than a function will cause SDK initialization to fail.
Optional
formatterAn optional formatter to use. The formatter should be compatible
with node-style format strings like those used with util.format
.
If not specified, then a default implementation will be used. But using a node-specific implementation, for instance, would have performance and quality benefits.
Rest
...args: any[]Rest
Optional
levelThe lowest level of log message to enable.
See LDLogLevel for a list of possible levels. Setting a level here causes
all lower-importance levels to be disabled: for instance, if you specify
'warn'
, then 'debug'
and 'info'
are disabled.
If not specified, the default is 'info'
(meaning that 'debug'
is disabled).
Optional
nameName to use for the log entires. The default name is LaunchDarkly
.
Generated using TypeDoc
Configuration for basicLogger.