Git Product home page Git Product logo

log's Introduction

@ianwalter/log

A tiny level-based console logger

npm page

Installation

yarn add @ianwalter/log

Usage

Basic

import log from '@ianwalter/log'

log.update({ level: 'warn' })

log.warn('Such logging!')

Using a custom logger (e.g. signale)

import log from '@ianwalter/log'
import signale from 'signale'

log.update({ types: Object.keys(signale._types), logger: signale })

log.complete('log can be used with signale')

Creating a separate, local logger

import log from '@ianwalter/log'

const localLog = log.create({ level: 'debug' })

localLog.debug('I am a debug statement')

Using namespaces

import log from '@ianwalter/log'

// Allows outputting log statements from loggers who have namespaces that match
// 'app.*'.
log.update({ unrestricted: 'app.*' })

// Create a logger that has an allowed namesapce.
const serverLog = log.ns('app.server')

// This log statement will be printed even though the log level is 'debug'.
serverLog.debug('I am a debug statement')

// So will this one.
log.ns('app.storage').debug('I, too, amd a debug statement')

License

Apache 2.0 with Commons Clause - See LICENSE

ย 

Created by Ian Walter

log's People

Contributors

dependabot-support avatar dependabot[bot] avatar ianwalter avatar renovate-bot avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

log's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.