Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

Loggaby v3.0.0

Compare
Choose a tag to compare
@TorchedSammy TorchedSammy released this 17 Oct 14:56
· 35 commits to master since this release
  • (Breaking Change) Transports will now receive an array of arguments instead of a single string, which can either just be .join()'d or formatted (TerminalTransport does this)

So users can now use formatting like the standard console.log:

const Loggaby = require('loggaby');
const logger = new Loggaby();

logger.log('Hello %s!', 'World');