- No dependencies
- Outstanding performance
- Support for
debug's filter - Browser compatible through
localStorage
npm add diaryimport { info, diary } from 'diary';
info('this important thing happened');
// ~> βΉ info this important thing happened
const scopedDiary = diary('my-module', (event) => {
if (event.level === 'error') {
Sentry.captureException(event.error);
}
});
scopedDiary.info('this other important thing happened');
// ~> βΉ info [my-module] this other important thing happenedControlling runtime emission of logs, using the code below as an example:
// example.js
import { diary } from 'diary';
const scopeA1 = diary('scopeA:one');
const scopeA2 = diary('scopeA:two');
const scopeB1 = diary('scopeB:one');
const scopeB2 = diary('scopeB:two');
scopeA1.info('message'); // won't log β
scopeA2.info('message'); // will log β
scopeB1.info('message'); // will log β
scopeB2.info('message'); // will log βlocalStorage.setItem('DEBUG', 'scopeA:two,scopeB:*');
// then your scriptsπ‘ Tip - Set this via the DevTools, then hit refresh. Saves you having to re-bundle.
DEBUG=scopeA:two,scopeB:* node example.jsAs of version v0.3.0 to enable log events you must use the enable programmatic api, this is due to Module Workers no
longer offering global environment variables, and instead they are injected through an api.
Ambiant logs do however need to be statically enabled. (put a enable() in module scope).
Example
import { diary, enable } from 'diary';
const logger = diary('my-worker');
export default {
async fetch(req, env, context) {
enable(env.DEBUG);
logger.info('request for', req.url);
},
};import { diary, enable } from 'diary';
enable('scopeA:two,scopeB:*');
const scopeA1 = diary('scopeA:one');
const scopeA2 = diary('scopeA:two');
const scopeB1 = diary('scopeB:one');
const scopeB2 = diary('scopeB:two');
scopeA1.info('message'); // won't log β
scopeA2.info('message'); // will log β
scopeB1.info('message'); // will log β
scopeB2.info('message'); // will log β
enable('scopeA:*');
scopeA1.info('message'); // will log β
scopeA2.info('message'); // will log β
scopeB1.info('message'); // won't log β
scopeB2.info('message'); // won't log βReturns: log functions
A default diary is exported, accessible through simply importing any log function.
Example of default diary
import { info } from 'diary'; info("i'll be logged under the default diary");
Type: string
The name given to this diaryβand will also be available in all logEvents.
Type: Reporter
A reporter is run on every log message (provided its enabled). A reporter gets given the
LogEvent interface:
interface LogEvent {
name: string;
level: LogLevels;
message: string;
extra: unknown[];
}Errors (for error and fatal) there is also an error: Error property.
A set of functions that map to console.error, console.warn, console.debug, console.info and console.info.
Aptly named;
-
fatal(message: string | Error, ...extra: any[]) -
error(message: string | Error, ...extra: any[])If an
Errorinstance is sent, the error object will be accessible with theerrorproperty on the context, this is for bothfatalanderror. -
warn(message: string, ...extra: any[]) -
debug(message: string, ...extra: any[]) -
info(message: string, ...extra: any[]) -
log(message: string, ...extra: any[])
All extra parameters are simply spread onto the console function, so node/browser's built-in formatters will format
any objects etc.
Type: Diary
The result of a calling diary;
Type: Function
Opts certain log messages into being output. See more here.
via the
/benchdirectory with Node v17.4.0
benchmark :: jit
bunyan x 4,741 ops/sec Β±1.72% (85 runs sampled)
debug x 182,974 ops/sec Β±2.27% (85 runs sampled)
diary x 582,962 ops/sec Β±7.28% (78 runs sampled)
pino x 17,792 ops/sec Β±1.87% (85 runs sampled)
benchmark :: aot
bunyan x 255,435 ops/sec Β±7.42% (78 runs sampled)
debug x 551,903 ops/sec Β±8.55% (80 runs sampled)
diary x 526,972 ops/sec Β±16.96% (74 runs sampled)
pino x 451,559 ops/sec Β±3.77% (90 runs sampled)
- workers-logger β fast and effective logging for Cloudflare Workers
MIT Β© Marais Rossouw