The version of Apache log4j used by SoundHelix.

[[ 🗃 ^aEp6o apache-log4j ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aEp6o

SSH: git clone USERNAME@vervis.peers.community:aEp6o

Branches

Tags

trunk :: src / site / apt /

index.apt

~~ Licensed to the Apache Software Foundation (ASF) under one or more
~~ contributor license agreements.  See the NOTICE file distributed with
~~ this work for additional information regarding copyright ownership.
~~ The ASF licenses this file to You under the Apache License, Version 2.0
~~ (the "License"); you may not use this file except in compliance with
~~ the License.  You may obtain a copy of the License at
~~
~~      http://www.apache.org/licenses/LICENSE-2.0
~~
~~ Unless required by applicable law or agreed to in writing, software
~~ distributed under the License is distributed on an "AS IS" BASIS,
~~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~~ See the License for the specific language governing permissions and
~~ limitations under the License.

Apache log4j\u2122  1.2

    Welcome to Apache log4j, a logging library for Java. Apache log4j
    is an Apache Software Foundation Project and developed by a dedicated
    team of Committers of the Apache Software Foundation.
    For more info, please see {{{http://www.apache.org}The Apache Software Foundation}}.
    Apache log4j is also part of a project which is known as {{{http://logging.apache.org}Apache Logging}}.
    Please see the {{{/license.html}License}}.

    If you are interested in the recent changes, visit our {{{/changes-report.html}changes report}}.
    
* Why logging?

    Inserting log statements into your code is a low-tech method
	for debugging it.  It may also be the only way because
	debuggers are not always available or applicable.  This is
	often the case for distributed applications.

    On the other hand, some people argue that log statements
	pollute source code and decrease legibility. (We believe that
	the contrary is true).  In the Java language where a
	preprocessor is not available, log statements increase the
	size of the code and reduce its speed, even when logging is
	turned off.  Given that a reasonably sized application may
	contain thousands of log statements, speed is of particular
	importance.

* Why log4j?

    With log4j it is possible to enable logging at runtime
	without modifying the application binary. The log4j package is
	designed so that these statements can remain in shipped code
	without incurring a heavy performance cost. Logging behavior
	can be controlled by editing a configuration file, without
	touching the application binary.

    Logging equips the developer with detailed context for
	application failures. On the other hand, testing provides
	quality assurance and confidence in the application. Logging
	and testing should not be confused. They are
	complementary. When logging is wisely used, it can prove to be
	an essential tool.

    One of the distinctive features of log4j is the notion of
	inheritance in loggers. Using a logger
	hierarchy it is possible to control which log
	statements are output at arbitrarily fine granularity but also
	great ease. This helps to reduce the volume of logged output and
	the cost of logging.

    The target of the log output can be a file, an
	OutputStream, a java.io.Writer, a
	remote log4j server, a remote Unix Syslog daemon, or many other output targets.

* Performance

    On an AMD Duron clocked at 800Mhz running JDK 1.3.1, it costs
	about 5 nanoseconds to determine if a logging statement should
	be logged or not. Actual logging is also quite fast, ranging
	from 21 microseconds using the SimpleLayout, 37
	microseconds using the TTCCLayout.  The performance of the
	PatternLayout is almost as good as the dedicated layouts,
	except that it is much more flexible.

* Roadmap 

    The package is being constantly improved thanks to input from
	users and code contributed by authors in the community. 

    Please note, the team is currently working on log4j 2 which will replace
    log4j 1 in near future.

* Get involved

    We are glad about help! Please make sure you have read the
    {{{http://www.apache.org/foundation/getinvolved.html}Get Involved}} document.
    Then join the {{{http://logging.apache.org/log4j/1.2/mail-lists.html}dev mailinglist}}
    and fix issues from {{{https://issues.apache.org/bugzilla/describecomponents.cgi?product=Log4j}Bugzilla}}.

    You can obtain the code via {{{source-repository.html}SVN}} or our {{{http://git.apache.org/log4j.git/}Git mirror}}.



[See repo JSON]