aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/LoggerSlf4j.java
AgeCommit message (Collapse)Author
2022-02-17[fixes #2990, #3069] slf4j logger enum test casesvarkart
2020-09-18[tests] removed a ridiculously exotic feature that still works, but is too ↵Reinier Zwitserloot
hard to test Specifically, using as custom logger topic a concatenated string, like literally `"A" + "B"`. It works, but depending on javac and phase of the moon that ends up as `"A" + "B"` or `"AB"`, and I don't think it's worthwhile for lombok to try to be consistent in this and test for that.
2020-07-02[fixes #2469] Support static reference as logger topicRawi01
2017-12-04fixing tests to account for generation of javax.annotation.Generated and ↵Reinier Zwitserloot
ConstructorProperties being default-off.
2017-02-09[i1014] Only add lombok.Generated if it is explicitly turned onRoel Spilker
2017-01-06add `@lombok.Generated` to generated classes, methods and fieldsRoel Spilker
2015-01-30[i623] added eclipse code for generating @javax.annotation.Generated, and ↵Reinier Zwitserloot
refactored java impl to reduce DRY violations. -f pretty now includes skipping generation of this annotation, and updated ALL the test cases.
2014-02-08Handlers and testcases for @Slf4jMaarten Mulders
2013-12-11semi-fix for issue 602, but not complete as adding annotations to generated ↵Reinier Zwitserloot
fields leads to crazy issues (see issue 217): generated LOG field now has @SuppressWarnings on it.
2013-03-11Added @Log4j2 support.Reinier Zwitserloot
2010-11-22- Renamed the diverse @Log annotations to give them distinct namesRoel Spilker
- Removed the option to specify a different class to log on - Updated tests and documentation
2010-11-07Use the actual annotation value to process the @Log annotations instead of ↵Roel Spilker
their String representations.
2010-11-03Intial support for @Log, for now only slf4jRoel Spilker
2010-10-31Added after-delombok test files for Loggergrootjans