MCPcopy Index your code
hub / github.com/log4js-node/log4js-node

github.com/log4js-node/log4js-node @v6.9.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v6.9.1 ↗ · + Follow
420 symbols 1,018 edges 99 files 27 documented · 6% updated 15d ago★ 5,83781 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

log4js-node CodeQL Node.js CI

NPM

This is a conversion of the log4js framework to work with node. I started out just stripping out the browser-specific code and tidying up some of the javascript to work better in node. It grew from there. Although it's got a similar name to the Java library log4j, thinking that it will behave the same way will only bring you sorrow and confusion.

The full documentation is available here.

Changes in version 3.x

There have been a few changes between log4js 1.x and 2.x (and 0.x too). You should probably read this migration guide if things aren't working.

Out of the box it supports the following features:

  • coloured console logging to stdout or stderr
  • file appender, with configurable log rolling based on file size or date
  • a logger for connect/express servers
  • configurable log message layout/patterns
  • different log levels for different log categories (make some parts of your app log as DEBUG, others only ERRORS, etc.)

Optional appenders are available:

Getting help

Having problems? Jump on the slack channel, or create an issue. If you want to help out with the development, the slack channel is a good place to go as well.

installation

npm install log4js

usage

Minimalist version:

var log4js = require("log4js");
var logger = log4js.getLogger();
logger.level = "debug";
logger.debug("Some debug messages");

By default, log4js will not output any logs (so that it can safely be used in libraries). The level for the default category is set to OFF. To enable logs, set the level (as in the example). This will then output to stdout with the coloured layout (thanks to masylum), so for the above you would see:

[2010-01-17 11:43:37.987] [DEBUG] [default] - Some debug messages

See example.js for a full example, but here's a snippet (also in examples/fromreadme.js):

const log4js = require("log4js");
log4js.configure({
  appenders: { cheese: { type: "file", filename: "cheese.log" } },
  categories: { default: { appenders: ["cheese"], level: "error" } },
});

const logger = log4js.getLogger("cheese");
logger.trace("Entering cheese testing");
logger.debug("Got cheese.");
logger.info("Cheese is Comté.");
logger.warn("Cheese is quite smelly.");
logger.error("Cheese is too ripe!");
logger.fatal("Cheese was breeding ground for listeria.");

Output (in cheese.log):

[2010-01-17 11:43:37.987] [ERROR] cheese - Cheese is too ripe!
[2010-01-17 11:43:37.990] [FATAL] cheese - Cheese was breeding ground for listeria.

Note for library makers

If you're writing a library and would like to include support for log4js, without introducing a dependency headache for your users, take a look at log4js-api.

Documentation

Available here.

There's also an example application.

TypeScript

import * as log4js from "log4js";
log4js.configure({
  appenders: { cheese: { type: "file", filename: "cheese.log" } },
  categories: { default: { appenders: ["cheese"], level: "error" } },
});

const logger = log4js.getLogger();
logger.level = "debug";
logger.debug("Some debug messages");

Contributing

We're always looking for people to help out. Jump on slack and discuss what you want to do. Also, take a look at the rules before submitting a pull request.

License

The original log4js was distributed under the Apache 2.0 License, and so is this. I've tried to keep the original copyright and author credits in place, except in sections that I have rewritten extensively.

Extension points exported contracts — how you extend this code

LoggingEvent (Interface)
(no doc) [2 implementers]
types/log4js.d.ts
Appenders (Interface)
(no doc)
types/test.ts
Level (Interface)
(no doc) [1 implementers]
types/log4js.d.ts
Logger (Interface)
(no doc)
types/test.ts
Levels (Interface)
(no doc) [1 implementers]
types/log4js.d.ts
Log4js (Interface)
(no doc)
types/log4js.d.ts
BasicLayout (Interface)
(no doc)
types/log4js.d.ts

Core symbols most depended-on inside this repo

end
called by 346
test/tap/fileAppender-test.js
configure
called by 206
types/log4js.d.ts
info
called by 159
types/log4js.d.ts
getLogger
called by 150
types/log4js.d.ts
testPattern
called by 96
test/tap/layouts-test.js
debug
called by 71
types/log4js.d.ts
assertThat
called by 55
test/tap/levels-test.js
shutdown
called by 54
types/log4js.d.ts

Shape

Function 243
Method 113
Interface 34
Class 30

Languages

TypeScript100%

Modules by API surface

types/log4js.d.ts69 symbols
lib/layouts.js44 symbols
lib/appenders/fileSync.js19 symbols
test/tap/connect-context-test.js15 symbols
lib/logger.js15 symbols
test/tap/dateFileAppender-test.js13 symbols
lib/appenders/multiprocess.js13 symbols
lib/LoggingEvent.js13 symbols
test/tap/connect-logger-test.js12 symbols
test/tap/connect-nolog-test.js11 symbols
test/tap/fileAppender-test.js10 symbols
lib/categories.js10 symbols

Dependencies from manifests, versioned

@commitlint/cli17.4.4 · 1×
@commitlint/config-conventional17.4.4 · 1×
@log4js-node/sandboxed-module2.2.1 · 1×
callsites3.1.0 · 1×
date-format4.0.14 · 1×
debug4.3.4 · 1×
deep-freeze0.0.1 · 1×
eslint8.34.0 · 1×
eslint-config-airbnb-base15.0.0 · 1×
eslint-import-resolver-node0.3.7 · 1×

For agents

$ claude mcp add log4js-node \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact