diff options
author | Roel Spilker <r.spilker@gmail.com> | 2010-11-22 23:52:34 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2010-11-22 23:52:34 +0100 |
commit | f258229b88a797694320b1794a4084998411a94b (patch) | |
tree | 293cf2d35ef61282eb45e494879e073ebcf5930b /website/features | |
parent | 8eb05b357d37b8e58cfb4ecb331371c88f1a856b (diff) | |
download | lombok-f258229b88a797694320b1794a4084998411a94b.tar.gz lombok-f258229b88a797694320b1794a4084998411a94b.tar.bz2 lombok-f258229b88a797694320b1794a4084998411a94b.zip |
- Renamed the diverse @Log annotations to give them distinct names
- Removed the option to specify a different class to log on
- Updated tests and documentation
Diffstat (limited to 'website/features')
-rw-r--r-- | website/features/GetterLazy.html | 2 | ||||
-rw-r--r-- | website/features/Log.html | 21 |
2 files changed, 10 insertions, 13 deletions
diff --git a/website/features/GetterLazy.html b/website/features/GetterLazy.html index a91e782c..d3e47b85 100644 --- a/website/features/GetterLazy.html +++ b/website/features/GetterLazy.html @@ -10,7 +10,7 @@ <div class="minimumHeight"></div> <div class="meat"> <div class="header"><a href="../index.html">Project Lombok</a></div> - <h1>@Getter and @Setter</h1> + <h1>@Getter(lazy=true)</h1> <div class="byline">Laziness is a virtue!</div> <div class="overview"> <h3>Overview</h3> diff --git a/website/features/Log.html b/website/features/Log.html index c5d7771c..91a06580 100644 --- a/website/features/Log.html +++ b/website/features/Log.html @@ -5,34 +5,31 @@ <link rel="stylesheet" type="text/css" href="features.css" /> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" /> <meta name="description" content="Spice up your java" /> - <title>@Log</title> + <title>@Log (and friends)</title> </head><body><div id="pepper"> <div class="minimumHeight"></div> <div class="meat"> <div class="header"><a href="../index.html">Project Lombok</a></div> - <h1>@Log</h1> + <h1>@Log (and friends)</h1> <div class="byline">Captain's Log, stardate 24435.7: "What was that line again?"</div> <div class="overview"> <h3>Overview</h3> <p> - <em>NEW in lombok 0.10: </em>You can annotate any field with <code>@Log</code> to let lombok generate a logger field automatically.<br /> + <em>NEW in lombok 0.10: </em>You can annotate any class with a log annotation to let lombok generate a logger field.<br /> The logger is named <code>log</code> and field's type depends on which logger you have selected. </p><p> - There are four <code>@Log</code> choices available:<br /> + There are four choices available:<br /> <dl> - <dt><code>@lombok.extern.apachecommons.Log</code></dt> + <dt><code>@CommonsLog</code></dt> <dd>Creates <code><span class="keyword">private static final </span><a href="http://commons.apache.org/logging/apidocs/org/apache/commons/logging/Log.html">org.apache.commons.logging.Log</a> <span class="staticfield">log</span> = <a href="http://commons.apache.org/logging/apidocs/org/apache/commons/logging/LogFactory.html#getLog(java.lang.Class)">org.apache.commons.logging.LogFactory.getLog</a>(LogExample.<span class="keyword">class</span>);</code></dd> - <dt><code>@lombok.extern.jul.Log</code></dt> + <dt><code>@Log</code></dt> <dd>Creates <code><span class="keyword">private static final </span><a href="http://download.oracle.com/javase/6/docs/api/java/util/logging/Logger.html">java.util.logging.Logger</a> <span class="staticfield">log</span> = <a href="http://download.oracle.com/javase/6/docs/api/java/util/logging/Logger.html#getLogger(java.lang.String)">java.util.logging.Logger.getLogger</a>(LogExample.<span class="keyword">class</span>.getName());</code></dd> - <dt><code>@lombok.extern.log4j.Log</code></dt> + <dt><code>@Log4j</code></dt> <dd>Creates <code><span class="keyword">private static final </span><a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Logger.html">org.apache.log4j.Logger</a> <span class="staticfield">log</span> = <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Logger.html#getLogger(java.lang.Class)">org.apache.log4j.Logger.getLogger</a>(LogExample.<span class="keyword">class</span>);</code></dd> - <dt><code>@lombok.extern.slf4j.Log</code></dt> + <dt><code>@Slf4j</code></dt> <dd>Creates <code><span class="keyword">private static final </span><a href="http://www.slf4j.org/api/org/slf4j/Logger.html">org.slf4j.Logger</a> <span class="staticfield">log</span> = <a href="http://www.slf4j.org/apidocs/org/slf4j/LoggerFactory.html#getLogger(java.lang.Class)">org.slf4j.LoggerFactory.getLogger</a>(LogExample.<span class="keyword">class</span>);</code></dd> </dl> </p> - <p> - All <code>@Log</code> annotations can take an optional parameter of type <code>Class</code>. If such a parameter is specified, that class will be used as the parameter for the logger factory call. - </p> </div> <div class="snippets"> <div class="pre"> @@ -51,7 +48,7 @@ <p> If a field called <code>log</code> already exists, a warning will be emitted and no code will be generated. </p><p> - A future feature of lombok's <code>@Log</code> is to find calls to the logger field and, if the chosen logging framework supports + A future feature of lombok's diverse log annotations is to find calls to the logger field and, if the chosen logging framework supports it and the log level can be compile-time determined from the log call, guard it with an <code>if</code> statement. This way if the log statement ends up being ignored, the potentially expensive calculation of the log string is avoided entirely. This does mean that you should <em>NOT</em> put any side-effects in the expression that you log. |