Isomorphic Logger
Tiny isomorphic logger that has the same semantics on the server and on the client with multi-channel support and modular structure.
import {Logger, createConsoleProcessor} from '@grabrinc/isomorphic-logger';
const logger = new Logger;
logger.channel(createConsoleProcessor());
logger.log('Hello world!', {foo: 'bar'});
Logging
These methods are available on Logger
instance and log messages at corresponding log level:
trace(...messages)
debug(...messages)
info(...messages)
there's a convinient alias log(...messages)
warn(...messages)
error(...messages)
Each method accepts an arbitrary number of arguments as console.log
does.
Logging Level
Setting log level on Logger
instance allows to limit verbosity of the output:
import {LogLevel} from '@grabrinc/isomorphic-logger';
logger.setLevel(LogLevel.WARN);
Following log levels are available out-of-the-box:
LogLevel.TRACE
LogLevel.DEBUG
LogLevel.INFO
LogLevel.WARN
LogLevel.ERROR
LogLevel.OFF
no messages would be logged with this level.
You can create your own log level via instantinating LogLevel
class:
logger.setLevel(new LogLevel(150));
Logging Level Test
If you want to perform heavy computations when particular logging level is set, you can use logging level test methods:
if (logger.isDebugEnabled()) {
logger.debug('Computation results');
}
These methods are availeble on Logger
instance:
isTraceEnabled()
isDebugEnabled()
isInfoEnabled()
isWarnEnabled()
isErrorEnabled()
Channels
To set up a logger instance you need to define at least one channel.
Channel consists of processors that are executed one after another and can be asynchronous.
import {
Logger,
createStackTraceTransformProcessor,
createDateAndLevelPrependProcessor,
createThrottleProcessor,
createConsoleProcessor
} from '@grabrinc/isomorphic-logger';
import Sentry from 'raven-js';
logger.channel(
createStackTraceTransformProcessor(),
createDateAndLevelPrependProcessor(),
createThrottleProcessor({delay: 500, length: 10}),
createConsoleProcessor()
);
logger.channel(
createMessageConcatProcessor(),
createErrorWrapProcessor(),
createSentryProcessor(Sentry)
);
logger.log('Hello there!')
Even if the channel contains an asynchronous processor, messages are guaranteed to be logged in the original order.
Logger itself is also a processor, so you can nest one logger into another:
const errorLogger = new Logger();
errorLogger.setLevel(LogLevel.ERROR);
errorLogger.channel(createSentryProcessor(Sentry));
const logger = new Logger();
logger.setLevel(LogLevel.TRACE);
logger.channel(createConsoleProcessor());
logger.channel(errorLogger);
logger.log('Foo');
logger.error('Oh snap!')
Available Processors
Following processors are available at the moment:
There are also server-only processors available which can be imported from @grabrinc/isomorphic-logger/server
:
How to create a custom processor?
A processor is a function that receives a set of records:
type Record = {
level: LogLevel,
messages: Array<*>
}
function myCustomProcessor(records: Record[]): Promise<Record[]> | Record[] | Promise<null> | null {
return records;
}
Or an object that has process
function property:
const myCustomProcessor = {
process(records: Record[]): Promise<Record[]> | Record[] | Promise<null> | null {
return records;
}
}
A processor should do some stuff with messages and return a new set of records that is passed to the next processor.
If processor returns false value than next processor is not invoked.
A processor can return Promise
that is awaited before proceeding to next processor.
If you need to ensure logging was completed before continuing code execution you can:
await logger.error('Wait for this messages to log!', error);
Declarative Logger Configuration
Logger can be created from JSON configuration:
import {parseLoggerConfig, ProcessorFactories} from '@grabrinc/isomorphic-logger';
const loggerConfig = {
level: 'TRACE',
channels: [
[
{type: 'throttle', options: {delay: 1000, length: 10}}
{type: 'extractStackTrace'},
{type: 'highlight'},
{type: 'console'}
],
[
{
type: 'logger',
options: {
level: 'ERROR',
channels: [
[
{type: 'prependDateAndLevel'},
{type: 'console'}
]
]
}
}
]
]
};
const logger = parseLoggerConfig(loggerConfig, ProcessorFactories);
License
The code is available under MIT license.