GithubHelp home page GithubHelp logo

zwzhuo / fagougou-js-logger Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fagougou/fagougou-js-logger

0.0 0.0 0.0 45 KB

A Winston wrapper for Fagougou projects

License: MIT License

JavaScript 100.00%

fagougou-js-logger's Introduction

fagougou-js-logger

A Winston wrapper for Fagougou projects

Getting Started

  1. 根目录配置文件 logger.yml

通过写入 appName,如果程序没有找到配置文件,则会读取 package.json 中的 name 字段作为 appName 的值

logger.yml 长这样:

//example
appName: fagougou-backend
  1. 安装 npm

npm install -S fagougou-js-logger

  1. 在代码中使用
const logger = require('fagougou-js-logger')

// Error
logger.error('Something wrong')

// Warn
logger.warn('Please attention')

// Info
logger.info('Make some noise')

// Debug (debug message will not be saved to log file but should be shown in console when we are not in production)
logger.debug("I'm watching you")
  1. 启动项目后,将在项目根目录自动生成 logs/${appName}.log 文件

注意: Debug 级别的消息是不会写入到日志文件的,但是会在非 production 环境中在 console 中显示

logs/fagougou-backend.log 长这样:

{"message": "Something wrong", "level":"error", "app":"fagougou-backend", "timestamp":"March 21st 2019, 17:35:26.859"}
{"message": "Please attention", "level":"warn", "app":"fagougou-backend", "timestamp":"March 21st 2019, 17:35:26.859"}
{"message": "Make some noise", "level":"info", "app":"fagougou-backend", "timestamp":"March 21st 2019, 17:35:26.859"}

  1. (optional)后续可以使用 ELK 等日志系统来抓取日志文件中的内容作为进一步的分析

Dependency: Winston

fagougou-js-logger's People

Contributors

xfanwu avatar

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.