From b6ce9410b15bc645fc191c147cfd14359da67b72 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 22 May 2014 03:30:11 +0200 Subject: added documentation for the configuration feature. --- website/features/Log.html | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'website/features/Log.html') diff --git a/website/features/Log.html b/website/features/Log.html index c459e7ff..8b635280 100644 --- a/website/features/Log.html +++ b/website/features/Log.html @@ -49,6 +49,29 @@
+
+

Supported configuration keys:

+
+
lombok.log.fieldName = an identifier (default: log)
+
The generated logger fieldname is by default 'log', but you can change it to a different name with this setting.
+
lombok.log.fieldIsStatic = [true | false] (default: true)
+
Normally the generated logger is a static field. By setting this key to false, the generated field will be an instance field instead.
+
lombok.log.flagUsage = [warning | error] (default: not set)
+
Lombok will flag any usage of any of the various log annotations as a warning or error if configured.
+
lombok.log.apacheCommons.flagUsage = [warning | error] (default: not set)
+
Lombok will flag any usage of @lombok.extern.apachecommons.CommonsLog as a warning or error if configured.
+
lombok.log.javaUtilLogging.flagUsage = [warning | error] (default: not set)
+
Lombok will flag any usage of @lombok.extern.java.Log as a warning or error if configured.
+
lombok.log.log4j.flagUsage = [warning | error] (default: not set)
+
Lombok will flag any usage of @lombok.extern.log4j.Log4j as a warning or error if configured.
+
lombok.log.log4j2.flagUsage = [warning | error] (default: not set)
+
Lombok will flag any usage of @lombok.extern.log4j.Log4j2 as a warning or error if configured.
+
lombok.log.slf4j.flagUsage = [warning | error] (default: not set)
+
Lombok will flag any usage of @lombok.extern.slf4j.Slf4j as a warning or error if configured.
+
lombok.log.xslf4j.flagUsage = [warning | error] (default: not set)
+
Lombok will flag any usage of @lombok.extern.slf4j.XSlf4j as a warning or error if configured.
+
+

Small print

@@ -59,7 +82,7 @@

-- cgit