请输入您要查询的百科知识:

 

词条 Log4j
释义

  1. Apache Log4j 2

  2. Log4j log levels

     Custom log levels 

  3. Log4j configuration

     Example for Log4j 2  Example for Log4j 1.2  

  4. TTCC

  5. Ports

  6. See also

  7. References

  8. Further reading

  9. External links

{{Infobox software
| name = Apache Log4j
| logo =
| screenshot =
| caption =
| developer = Apache Software Foundation
| released = {{Start date and age|2001|01|08}}[1]
| latest release version = 2.11.2
| latest release date = {{release date and age|2019|02|03}}[2]
| latest preview version =
| latest preview date =
| operating system = Cross-platform
| programming language = Java
| genre = Logging Tool
| license = Apache License 2.0
| website = {{url|https://logging.apache.org/log4j/2.x/}}
}}

Apache Log4j is a Java-based logging utility. It was originally written by Ceki Gülcü and is part of the Apache Logging Services project of the Apache Software Foundation. Log4j is one of several Java logging frameworks.

Gülcü has since started the SLF4J and Logback[3] projects, with the intention of offering a successor to Log4j.

The Apache Log4j team has created a successor to Log4j 1 with version number 2.[4] Log4j 2 was developed with a focus on the problems of Log4j 1.2, 1.3, java.util.logging and Logback, and addresses issues which appeared in those frameworks. In addition, Log4j 2 offers a plugin architecture which makes it more extensible than its predecessor. Log4j 2 is not backwards compatible with 1.x versions,[5] although an "adapter" is available.

On August 5, 2015 the Apache Logging Services Project Management Committee announced[6] that Log4j 1 had reached end of life and that users of Log4j 1 are recommended to upgrade to Apache Log4j 2.

Apache Log4j 2

Apache Log4j 2 is the successor of Log4j 1 which was released as GA version in July 2014. The framework was rewritten from scratch and has been inspired by existing logging solutions, including Log4j 1 and java.util.logging. The main differences[7][8] from Log4j 1 are:

  • Improved reliability. Messages are not lost while reconfiguring the framework like in Log4j 1 or Logback
  • Extensibility: Log4j 2 supports a plugin system to let users define and configure custom components
  • Simplified configuration syntax
  • Support for xml, json, yaml and properties configurations
  • Improved filters
  • Property lookup support for values defined in the configuration file, system properties, environment variables, the ThreadContext Map, and data present in the event
  • Support for multiple APIs: Log4j 2 can be used with applications using the Log4j 2, Log4j 1.2, SLF4J, Commons Logging and java.util.logging (JUL) APIs.
  • Custom log levels
  • Java 8-style lambda support for "lazy logging"
  • Markers
  • Support for user-defined Message objects
  • "Garbage-free or low garbage" in common configurations
  • Improved speed

One of the most recognized features of Log4j 2 is the performance of the "Asynchronous Loggers".[9] Log4j 2 makes use of the LMAX Disruptor.[10] The library reduces the need for kernel locking and increases the logging performance by a factor of 12. For example, in the same environment Log4j 2 can write more than 18,000,000 messages per second, whereas other frameworks like Logback and Log4j 1 just write < 2,000,000 messages per second.

Log4j log levels

The following table defines the built-in log levels and messages in Log4j, in decreasing order of severity. The left column lists the log level designation in Log4j and the right column provides a brief description of each log level.

LevelDescription
OFF The highest possible rank and is intended to turn off logging.
FATAL Severe errors that cause premature termination. Expect these to be immediately visible on a status console.
ERROR Other runtime errors or unexpected conditions. Expect these to be immediately visible on a status console.
WARN Use of deprecated APIs, poor use of API, 'almost' errors, other runtime situations that are undesirable or unexpected, but not necessarily "wrong". Expect these to be immediately visible on a status console.
INFO Interesting runtime events (startup/shutdown). Expect these to be immediately visible on a console, so be conservative and keep to a minimum.
DEBUG Detailed information on the flow through the system. Expect these to be written to logs only. Generally speaking, most lines logged by your application should be written as DEBUG.
TRACE Most detailed information. Expect these to be written to logs only. Since version 1.2.12.[11]

Custom log levels

Log4j 2 allows users to define their own log levels.[12] A source code generator tool is provided to create Loggers that support custom log levels identically to the built-in log levels. Custom log levels can either complement or replace the built-in log levels.

Log4j configuration

Log4j can be configured[13] through a configuration file or through Java code. Configuration files can be written in XML, JSON, YAML, or properties file format. Within a configuration you can define three main components: Loggers, Appenders and Layouts. Configuring logging via a file has the advantage that logging can be turned on or off without modifying the application that uses Log4j. The application can be allowed to run with logging off until there's a problem, for example, and then logging can be turned back on simply by modifying the configuration file.

Loggers[14] are named log message destinations. They are the names that are known to the Java application. Each logger is independently configurable as to what level of logging (FATAL, ERROR, etc.) it currently logs. In early versions of Log4j, these were called category and priority, but now they're called logger and level, respectively. A Logger can send log messages to multiple Appenders.

The actual outputs are done by Appenders.[15] There are numerous Appenders available, with descriptive names, such as FileAppender, RollingFileAppender, ConsoleAppender, SocketAppender, SyslogAppender, and SMTPAppender. Log4j 2 added Appenders that write to Apache Flume, the Java Persistence API, Apache Kafka, NoSQL databases, Memory-mapped files, Random Access files[16] and ZeroMQ endpoints. Multiple Appenders can be attached to any Logger, so it's possible to log the same information to multiple outputs; for example to a file locally and to a socket listener on another computer.

Appenders use Layouts[17] to format log entries. A popular way to format one-line-at-a-time log files is PatternLayout, which uses a pattern string, much like the C / C++ function printf. There are also HTMLLayout and XMLLayout formatters for use when HTML or XML formats are more convenient, respectively. Log4j 2 added Layouts for CSV, Graylog Extended Log Format (GELF),[18] JSON, YAML and RFC-5424.[19]

In Log4j 2, Filters[20] can be defined on configuration elements to give more fine-grained control over which log entries should be processed by which Loggers and Appenders. In addition to filtering by log level and regular expression matching on the message string, Log4j 2 added burst filters, time filters, filtering by other log event attributes like Markers or Thread Context Map and JSR 223 script filters.

To debug a misbehaving configuration:

  • In Log4j 2 configurations set the status attribute to TRACE to send internal status logging output to standard out. To enable status logging before the configuration is found, use the Java VM property -Dorg.apache.logging.log4j.simplelog.StatusLogger.level=trace.
  • In Log4j 1, use the Java VM property -Dlog4j.debug.

To find out where a log4j2.xml configuration file was loaded from inspect getClass().getResource("/log4j2.xml").

There is also an implicit "unconfigured" or "default" configuration of Log4j, that of a Log4j-instrumented Java application which lacks any Log4j configuration. This prints to stdout a warning that the program is unconfigured, and the URL to the Log4j web site where details on the warning and configuration may be found. As well as printing this warning, an unconfigured Log4j application will only print ERROR or FATAL log entries to standard out.

Example for Log4j 2

target/test.log%d %p %c{1.} [%t] %m%n

Example for Log4j 1.2

TTCC

TTCC is a message format used by log4j.[21] TTCC is an acronym for Time Thread Category Component. It uses the following pattern:

Where

Mnemonic Description
%r Used to output the number of milliseconds elapsed from the construction of the layout until the creation of the logging event.
%t Used to output the name of the thread that generated the logging event.
%p Used to output the priority of the logging event.
%c Used to output the category of the logging event.
%x Used to output the NDC (nested diagnostic context) associated with the thread that generated the logging event.[22]
%X{key} Used to output the MDC (mapped diagnostic context) associated with the thread that generated the logging event for specified key.[23]
%m Used to output the application supplied message associated with the logging event.
%n Used to output the platform-specific newline character or characters.
Example output

467 [main] INFO org.apache.log4j.examples.Sort - Exiting main method.

Ports

  • log4c - A port for C. Log4C is a C-based logging library, released on SourceForge under the LGPL license. For various Unix operating systems the autoconf and automake files are provided. On Windows a Makefile is provided for use with MSVC. Developers may also choose to use their own make system to compile the source, depending on their build engineering requirements. An instance of the log4c library may be configured via three methods: using environment variables, programmatically, or via XML configuration file. log4c has appenders for Files, Streams and memory mapped files. (No Socket Adapter.) Last version is 1.2.4, released in 2013, and the project is no longer actively developed.[24]
  • log4js - A port for JavaScript. Log4js is available under the licence of Apache Software Foundation. One special feature of Log4js is the ability to log the events of the browser remotely on the server. Using Ajax it is possible to send the logging events in several formats (XML, JSON, plain ASCII, etc.) to the server to be evaluated there. The following appenders are implemented for log4js: AjaxAppender, ConsoleAppender, FileAppender, JSConsoleAppender, MetatagAppender, and WindowsEventsAppender. The following Layout classes are provided: BasicLayout, HtmlLayout, JSONLayout, and XMLLayout. Last version is 1.1, released in 2008.[25]
  • log4javascript - Another port for JavaScript. log4javascript is a JavaScript logging framework based on the log4j. The latest version is 1.4.9, released in May 2014.[26]
  • JSNLog - A port for JavaScript. Automatically places messages from JavaScript loggers in server side logs using a .NET server side component that interfaces with Log4Net, NLog, Elmah or Common.Logging. This to provide an integrated log for client and server side events. Request ids correlate events related to a specific user. Configuration is via a server side web.config file. Supports exception logging including stack traces. In July 2014 the latest version was 2.7.1 and updates were made regularly.[27]
  • Apache Log4net - A port to the Microsoft .NET Framework. The initial work was done by Neoworks and was donated to the Apache Software Foundation in February 2004. The framework is similar to the original log4j while taking advantage of new features in the .NET runtime. Provides Nested Diagnostic Context (NDC) and Mapped Diagnostic Context (MDC). The latest version is 2.0.8 which was released in 2017.[28][29]
  • log4perl - A Perl port of the widely popular log4j logging package. Last version is 1.49, released in February 2017.[30]
  • Apache log4php - "A versatile logging framework for PHP. Originally a port of Apache log4j to PHP, it has grown to include various PHP specific features."[31]
  • PL-SQL-Logging-Utility is an adaptation of log4j in PL/SQL.[32]
  • Log4db2 is a logging utility for DB2 for LUW that uses SQL instructions with SQL PL code.[33]
  • Apache Log4cxx - A logging framework for C++ patterned after Apache log4j, which uses Apache Portable Runtime for most platform-specific code and should be usable on any platform supported by APR. It is currently undergoing Incubation, The latest version is 0.10.0, released in 2008.[34]
  • Log4r - A comprehensive and flexible logging library written in Ruby for use in Ruby programs. It was inspired by and provides much of the features of the Apache Log4j project.[35]

See also

{{Portal|Java (programming language)|Free and open-source software}}
  • Chainsaw (log file viewer)

References

1. ^{{cite web |url=https://logging.apache.org/log4j/1.2/changes-report.html |title=Apache Log4j 1.2 Release History |author= |website=apache.org |publisher=Apache Software Foundation |accessdate=2014-09-02}}
2. ^{{cite web|url=http://logging.apache.org/log4j/2.x/changes-report.html|title=Log4j – Changes - Apache Log4j 2|website=apache.org|publisher=Apache Software Foundation|accessdate=21 April 2017}}
3. ^{{cite web|url=http://logback.qos.ch/ |title=Logback Home |publisher=Logback.qos.ch |date= |accessdate=2014-07-24}}
4. ^{{cite web|url=http://logging.apache.org/log4j/2.x/ |title=Log4j 2 Guide - Apache Log4j 2 |publisher=Logging.apache.org |date=2014-07-12 |accessdate=2014-07-24}}
5. ^{{cite web|url=http://logging.apache.org/log4j/2.x/index.html#News |title=Log4j 2 Guide - Apache Log4j 2: News |publisher=Logging.apache.org |date=2014-07-12 |accessdate=2014-07-24}}
6. ^{{cite web|url=https://blogs.apache.org/foundation/entry/apache_logging_services_project_announces |title=Apache™ Logging Services™ Project Announces Log4j™ 1 End-Of-Life; Recommends Upgrade to Log4j 2 |publisher=blogs.apache.org |date=2015-08-05 |accessdate=2016-07-03}}
7. ^{{cite web|url=http://www.grobmeier.de/the-new-log4j-2-0-05122012.html |title=The new log4j 2.0 |publisher=Grobmeier.de |date=2012-12-05 |accessdate=2014-07-24}}
8. ^{{cite web|url=http://logging.apache.org/log4j/2.x/manual/index.html |title=Log4j – Overview - Apache Log4j 2 |publisher=logging.apache.org |date=2016-06-05 |accessdate=2016-07-03}}
9. ^{{cite web|url=http://logging.apache.org/log4j/2.x/manual/async.html#Performance |title=Log4j 2 Asynchronous Loggers for Low-Latency Logging - Apache Log4j 2 |publisher=Logging.apache.org |date=2014-07-12 |accessdate=2014-07-24}}
10. ^{{cite web|url=https://lmax-exchange.github.io/disruptor/ |title=Disruptor by LMAX-Exchange |publisher=Lmax-exchange.github.io |date= |accessdate=2014-07-24}}
11. ^{{cite web|url=http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Level.html#TRACE |title=Level (Apache Log4j 1.2.17 API) |publisher=Logging.apache.org |date=2012-06-09 |accessdate=2014-07-24}}
12. ^{{cite web|url=https://logging.apache.org/log4j/2.x/manual/customloglevels.html |title=Custom Log Levels |publisher=Logging.apache.org |date=2014-07-12 |accessdate=2016-07-16}}
13. ^{{cite web|url=https://logging.apache.org/log4j/2.x/manual/configuration.html |title=Configuration |publisher=Logging.apache.org |date=2016-07-05 |accessdate=2016-07-16}}
14. ^{{cite web|url=https://logging.apache.org/log4j/2.x/manual/architecture.html |title=Architecture|publisher=Logging.apache.org |date=2016-07-05 |accessdate=2016-07-16}}
15. ^{{cite web|url=https://logging.apache.org/log4j/2.x/manual/appenders.html |title=Appenders|publisher=Logging.apache.org |date=2016-07-05 |accessdate=2016-07-16}}
16. ^{{cite web|url=https://docs.oracle.com/javase/7/docs/api/java/io/RandomAccessFile.html |title=RandomAccessFile|publisher=docs.oracle.com |date=2011-07-28 |accessdate=2016-07-16}}
17. ^{{cite web|url=https://logging.apache.org/log4j/2.x/manual/layouts.html |title=Layouts|publisher=Logging.apache.org |date=2016-07-05 |accessdate=2016-07-16}}
18. ^{{cite web|url=http://docs.graylog.org/en/2.0/pages/gelf.html |title=GELF|publisher=docs.graylog.org |date=2016-06-08 |accessdate=2016-07-16}}
19. ^{{cite web|url=https://tools.ietf.org/html/rfc5424 |title=RFC 5424 - The Syslog Protocol|publisher=tools.ietf.org |date=2009-03-01 |accessdate=2016-07-16}}
20. ^{{cite web|url=https://logging.apache.org/log4j/2.x/manual/filters.html |title=Filters|publisher=Logging.apache.org |date=2016-07-05 |accessdate=2016-07-16}}
21. ^{{cite web|url=http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/TTCCLayout.html |title=TTCCLayout (Apache Log4j 1.2.17 API) |publisher=Logging.apache.org |date=2012-06-09 |accessdate=2014-07-24}}
22. ^{{cite web |url=http://logging.apache.org/log4j/docs/api/org/apache/log4j/NDC.html |title=Class NDC|archiveurl=https://web.archive.org/web/20070820182511/http://logging.apache.org/log4j/docs/api/org/apache/log4j/NDC.html |archivedate=2007-08-20 |deadurl=yes |accessdate=2014-07-24}}
23. ^{{cite web|url=http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/MDC.html |title=MDC (Apache Log4j 1.2.17 API) |publisher=Logging.apache.org |date=2012-06-09 |accessdate=2014-07-24}}
24. ^{{cite web|url=http://sourceforge.net/projects/log4c/ |title=Logging Framework for C | Free System Administration software downloads at |publisher=Sourceforge.net |date= |accessdate=2014-07-24}}
25. ^{{cite web|author= |url=https://stritti.github.io/log4js/ |title=Log4js |publisher=Log4js |date= |accessdate=2017-03-29}}
26. ^{{cite web|url=http://log4javascript.org/ |title=a JavaScript logging framework |publisher=log4javascript |date= |accessdate=2014-07-24}}
27. ^{{cite web |url=http://jsnlog.com/ |title=Logging JavaScript errors to your server side log |publisher=JSNLog |date= |accessdate=2014-07-24}}
28. ^{{cite web|url=http://logging.apache.org/log4net/ |title=Apache log4net: Home |publisher=Logging.apache.org |date=2015-12-05 |accessdate=2016-04-08}}
29. ^{{cite web|url=https://github.com/apache/logging-log4net/commit/cd20f62a742108d3b8c0cb237dcc11d4911d8c0f |title=Commit of the latest release of log4net on github}}
30. ^{{cite web|url=https://mschilli.github.com/log4perl |title=log4perl - log4j for Perl |publisher=Mschilli.github.com |date= |accessdate=2014-07-24}}
31. ^{{cite web|url=http://logging.apache.org/|title=Apache Logging Services |publisher=Apache.org |date= |accessdate=2015-03-11}}
32. ^{{cite web|url=https://github.com/tmuth/Logger---A-PL-SQL-Logging-Utility |title=tmuth/Logger-A-PL-SQL-Logging-Utility — GitHub |publisher=Github.com |date= |accessdate=2014-07-24}}
33. ^{{cite web|url=https://angoca.github.io/log4db2/ |title=Log4db2 by angoca |publisher=Angoca.github.io |date= |accessdate=2014-07-24}}
34. ^{{cite web|title=log4cxx - Changes|url=https://logging.apache.org/log4cxx/latest_stable/changes-report.html|website=logging.apache.org}}
35. ^{{cite web|title=Log4r Manual|url=http://log4r.rubyforge.org/|publisher=log4r.rubyforge.org|accessdate=2017-04-13|deadurl=yes|archiveurl=https://archive.is/20121225133348/http://log4r.rubyforge.org/|archivedate=2012-12-25|df=}}

Further reading

{{Refbegin}}
  • {{Citation

| first1 = Ceki
| last1 = Gülcü
| date = February 2010
| title = The Complete Log4j Manual
| edition = 2nd
| publisher = QOS.ch
| page = 204
| isbn = 978-2-9700369-0-6
}}
  • {{Citation

| first1 = Samudra
| last1 = Gupta
| date = June 22, 2005
| title = Pro Apache Log4j
| edition = 2nd
| publisher = Apress
| page = 224
| isbn = 978-1-59059-499-5
}}{{Refend}}

External links

  • {{Official website}}
{{Apache}}

4 : Apache Software Foundation|Free software programmed in Java (programming language)|Log file formats|Software using the Apache license

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/22 19:40:32