Quickstart
import { getLogger } from '@quik/core';
getLogger().info('App started');
getLogger().error('Something failed', { userId: 42 });
Notes
@quik/logging'ssetup()builds the logger fromlogs.type/logs.level/logs.enabledand installs it as theIQLoggerfeature — callgetLogger()(from@quik/core) anywhere after module setup instead of constructing a logger directly.- Available methods:
info,error,warn,debug,verbose,silly— each accepts a message plus optional metadata arguments, matching Winston's logger surface. QConsoleLoggerandQJSONLoggerare exported directly if you need to construct a logger outside the module setup flow (e.g. for a standalone script).