Package Exports
- @libp2p/logger
Readme
libp2p-logger
A logging component for use in js-libp2p components
Table of Contents
Description
A map that reports it's size to the libp2p Metrics system.
If metrics are disabled a regular map is used.
Installation
$ npm i @libp2p/logger
Example
import { logger } from '@libp2p/logger'
const log = logger('libp2p:my:component:name')
log('something happened: %s', 'it was ok')
log.error('something bad happened: %o', err)
$ DEBUG=libp2p:* node index.js
something happened: it was ok
something bad happened: <stack trace>
License
Licensed under either of
- Apache 2.0, (LICENSE-APACHE / http://www.apache.org/licenses/LICENSE-2.0)
- MIT (LICENSE-MIT / http://opensource.org/licenses/MIT)
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.