1.1.0 • Published 7 years ago

slf4js v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

A Simple Facade for CommonJS loggers.

slf4js wraps specific logger implementations with a standard logger interface. The job of performing the logging is delegated to the specific logging implementations, slf4js mostly provides the interface and throttles the logger implementations to behave more like loggers in the Java world. In this way, you can swap out loggers easily, which you can't do if you sprinkle code for a specific logger implementation throughout your code.

However, slf4js avoids such log4j-concepts like appenders and layouts in configurations. To configure log messages, simply create a JSON object containing the format for the log messages, and the log levels for whatever you want to log. Log levels can be assigned to anything--files, "classes," functions, "packages." To use a custom logger, assign the path to logger file to the optional "logger" property. If you omit the logger property, the default ConsoleLogger will be used, sending messages to the browser console.

An example configuration file:

 {
    "logger": "logging/AlertLogger",
    "pattern": "%d{yyyy/MM/dd HH:mm:ss.SSS} [%M] %p%-5l - %m%n",
    "firstModule": "INFO",                     
    "MyGreatClass": "LOG"                      
 }
  • "firstModule" is a function being logged from INFO up.
  • "MyGreatClass" is a "class" being logged from LOG up.

Configuration properties:

  • pattern: The format for log messages
  • logger: optional A String path to the Logger implementation class to use for logger.
  • All other properties are key-value pairs mapping a string (which can be the name of a function, the "name" of a class, or any string that was used when the logger instance was created) to a log level. Hence, given the properties example above, slf4js.getLogger("MyGreatClass") would create a Logger with a log level of LOG, because "MyGreatClass" maps to LOG.

Pattern Symbols

The pattern symbols are the same ones used by log4j, and for the most part they have the same functions, but there are a few differences, and only the symbols below are supported:

% The CSS style for the log message. This departs from log4j and follows the Console API.

%d{date format} The date of the event. Optionally the date format follows within braces: e.g., %d{yyyy/MM/dd HH:mm:ss,SSS}. If the format is omitted, the format defaults to yyyy/MM/dd HH:mm:ss.

PatternDescription
%FThe web page where the log request was issued.
%lThe function that generated the event
%L
%mThe log message
%MClass, function, file, package that issued the message. The name will be the one passed to slf4js.getLogger() when the logger was created.
%nThe platform-specific newline character
%pThe log level of the event
%%The percent sign
%-0-9+Moves the next part of the message to the right by the specified number of spaces: e.g., %p%-5l, writes the log level, followed by 5 spaces followed by the location.
1.1.0

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago