Coder Social home page Coder Social logo

plugin-logger's Introduction

Intro

Logger plugin for BeautyWe.

CircleCI NPM Version NPM Downloads npm bundle size Coverage Status

Feature

  1. 可控制的 log level
  2. 自定义前缀
  3. 轻量,简单

适用性

适用 BeautyWe.BtPage, BeautyWe.BtApp

安装

$ npm i @beautywe/plugin-logger
import BeautyWe from '@beautywe/core';
import logger from '@beautywe/plugin-logger';

const page = new BeautyWe.BtPage();

page.use(logger({
    // options
}));

使用

API

page.logger.info('this is info');
page.logger.warn('this is warn');
page.logger.error('this is error');
page.logger.debug('this is debug');

// 输出
// [info] this is info
// [warn] this is warn
// [error] this is error
// [debug] this is debug

Level control

可通过配置来控制哪些 level 该打印:

page.use(logger({
    level: 'warn',
}));

那么 warn 以上的 log (info, debug)就不会被打印,这种满足于开发和生成环境对 log 的不同需求。

level 等级如下:

Logger.LEVEL = {
    error: 1,
    warn: 2,
    info: 3,
    debug: 4,
};

Prefix

page.use(logger({
    prefix: 'beautywe',
}));

page.logger.info('this is info');

// 输出
// [beautywe:info] this is info

Custom title

page.logger.info('this is info');

// 输出
// [info] this is info

其中 [info] 部分,被称为 title,这部分允许自定义的:

page.use(logger({
    titleTemplate({ prefix, levelName }) {
        return prefix ? `[${prefix}:${levelName}]` : `[${levelName}]`;
    }
}));

Handler

支持监听各种 log,以支持诸如:「错误日志,需要上报」这种需求:

page.use(logger({
    onError(...args) {
        // do your logic
    },
    onWarn(...args) {
        // do your logic
    },
    onInfo(...args) {
        // do your logic
    },
    onDebug(...args) {
        // do your logic
    },
}));

License

This project is licensed under the MIT license.

Copyright (c) JerryC Huang ([email protected])

plugin-logger's People

Contributors

jerryc8080 avatar

Stargazers

Hao.Dongfang avatar  avatar

Watchers

James Cloos avatar  avatar

Forkers

giegie1970

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.