mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
8 lines
254 B
CoffeeScript
8 lines
254 B
CoffeeScript
# Basic Logger functionality
|
|
exports.debug = console.debug
|
|
exports.notice = console.log
|
|
exports.info = console.info
|
|
exports.warn = console.warn
|
|
exports.warning = console.warn
|
|
exports.error = console.error
|
|
exports.critical = console.error |