Coder Social home page Coder Social logo

log4js-example's Introduction

log4js-example

A full express application that demonstrates how to configure log4js for the most common use-case.

To run:

npm install
npm start

Log config

Config file is in config/log4js.json. It defines three appenders that are children of the clustered appender. The clustered appender makes sure that only the master process writes to the log files, otherwise having multiple processes try to write at the same time will cause problems. Three log files are defined: log/app.log gets all the log messages and is configured to rotate when the file gets to 10Mb in size, keeping 3 backups of the file; log/errors.log uses the logLevelFilter to only get ERROR messages; log/access.log contains only the http request logs, using the connect-logger, and is configured to rotate every day.

log4js-example's People

Contributors

nomiddlename avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

log4js-example's Issues

How can I Generate app.log file daily - datewise

I need help for generate app.log file on daily bases.

I have added pattern in log4js.json file for "apps" that
"app": {
"type": "file",
"filename": "./storage/logs/app.log",
"maxLogSize": 10485760,
"pattern": "-yyyy-MM-dd",
"numBackups": 3
},
but I'm getting error. Please help me to generate app.log file dynamic date wise. like app-14-apr-2020.log

configuration file log4js.json does not contain a valid configuration

When using the sample configuration file config/log4js.json log4js is unable to load this configuration:

 "appenderList.forEach is not a function" (TypeError: appenderList.forEach is not a function
    at configureAppenders (node_modules\log4js\lib\log4js.js:248:18)
    at configureOnceOff (node_modules\log4js\lib\log4js.js:308:7)
    at Object.configure (node_modules\log4js\lib\log4js.js:371:3)

A valid configuration file looks more like this:

{
    "appenders": [
      {
        "type": "dateFile",
        "filename": "log/access.log",
        "pattern": "-yyyy-MM-dd",
        "category": "http"
      },
      {
        "type": "file",
        "filename": "log/app.log",
        "maxLogSize": 10485760,
        "numBackups": 3
      }
    ]
  }

res.error not a function

It is a minor bug, but i think in the route/users.js file, in the broken route the function should be res.send and not res.error.

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.