org.apache.velocity.runtime.log |
|
Java Source File Name | Type | Comment |
AvalonLogChute.java | Class | Implementation of a Avalon logger.
author: Jon S. |
AvalonLogSystem.java | Class | Implementation of a Avalon logger.
author: Jon S. |
HoldingLogChute.java | Class | Pre-init logger. |
JdkLogChute.java | Class | Implementation of a simple java.util.logging LogChute. |
Log.java | Class | Convenient wrapper for LogChute functions. |
Log4JLogChute.java | Class | Implementation of a simple log4j system that will either latch onto
an existing category, or just do a simple rolling file log.
author: Daniel L. |
Log4JLogSystem.java | Class | Implementation of a simple log4j system that will either latch onto
an existing category, or just do a simple rolling file log.
Use this one rather than
SimpleLog4JLogSystem ; it uses the
modern Logger concept of Log4J, rather than the
deprecated Categeory concept.
author: Daniel L. |
LogChute.java | Interface | Base interface that logging systems need to implement. |
LogChuteSystem.java | Class | Wrapper to make user's custom LogSystem implementations work
with the new LogChute setup. |
LogDisplayWrapper.java | Class | This is a wrapper around a log object, that can add a prefix to log messages
and also turn logging on and off dynamically. |
LogManager.java | Class |
This class is responsible for instantiating the correct LogChute
The approach is :
-
First try to see if the user is passing in a living object
that is a LogChute, allowing the app to give its living
custom loggers.
-
Next, run through the (possible) list of classes specified
specified as loggers, taking the first one that appears to
work.
|
LogSystem.java | Interface | Old base interface that old logging systems needed to implement.
author: Jon S. |
NullLogChute.java | Class | Logger used in case of failure. |
NullLogSystem.java | Class | Logger used in case of failure. |
PrimordialLogSystem.java | Class | Pre-init logger. |
RuntimeLoggerLog.java | Class | A temporary RuntimeLogger wrapper to make the deprecation
of UberspectLoggable.setRuntimeLogger(RuntimeLogger) feasible.
This overrides all Log methods, either throwing
UnsupportedOperationExceptions or passing things off to the
theoretical RuntimeLogger used to create it. |
SimpleLog4JLogSystem.java | Class | This class is deprecated in favor of the new
Log4JLogChute ,
which makes use of Log4J's Logger rather than its deprecated
Category class.
Implementation of a simple log4j system that will either
latch onto an existing category, or just do a simple
rolling file log. |
SystemLogChute.java | Class | Logger used when no other is configured. |
VelocityFormatter.java | Class | |