pmd-eclipse: fix #1112 Eclipse log file will not be filled

This commit is contained in:
Andreas Dangel committed 2013-08-10 15:02:01 +02:00
1 parent e0cf43a60d
commit b33075a280
2 files changed
+3 -1

No files matched your search

+2
View File
@@ -10,6 +10,7 @@ Eclipse Update Site: http://sourceforge.net/projects/pmd/files/pmd-eclipse/updat
* Fixed Violations are reported multiple times ([bug #1071])
* Fixed SWTError: No more handles on Violation Outline View ([bug #1096])
* Fixed Selecting non-duplicates during import doesn't work. ([bug #1110])
* Fixed Eclipse log file will not be filled ([bug #1112])
* Fixed PMD Eclipse plugin doesn't analyze project if it has non-existing source folders ([bug #1116])
* Fixed An internal error occurred during: "RenderReport" ([bug #1117])
@@ -17,6 +18,7 @@ Eclipse Update Site: http://sourceforge.net/projects/pmd/files/pmd-eclipse/updat
[bug #1071]: https://sourceforge.net/p/pmd/bugs/1071/
[bug #1096]: https://sourceforge.net/p/pmd/bugs/1096/
[bug #1110]: https://sourceforge.net/p/pmd/bugs/1110/
[bug #1112]: https://sourceforge.net/p/pmd/bugs/1112/
[bug #1116]: https://sourceforge.net/p/pmd/bugs/1116/
[bug #1117]: https://sourceforge.net/p/pmd/bugs/1117/
@@ -62,7 +62,7 @@ public interface IPreferences {
String REVIEW_ADDITIONAL_COMMENT_DEFAULT = "by {0} on {1}";
boolean REVIEW_PMD_STYLE_ENABLED_DEFAULT = true;
int MIN_TILE_SIZE_DEFAULT = 25;
String LOG_FILENAME_DEFAULT = "pmd-eclipse.log";
String LOG_FILENAME_DEFAULT = System.getProperty("user.home") + "/pmd-eclipse.log";
Level LOG_LEVEL = Level.WARN;
// default active rules - these are the rules from java-basic,java-imports,java-unusedcode
String ACTIVE_RULES = "ExtendsObject,AvoidMultipleUnaryOperators,DoubleCheckedLocking,DuplicateImports,ReturnFromFinallyBlock,UnconditionalIfStatement,BooleanInstantiation,UnusedLocalVariable,AvoidThreadGroup,AvoidDecimalLiteralsInBigDecimalConstructor,DontUseFloatTypeForLoopIndices,MisplacedNullCheck,AvoidUsingHardCodedIP,UnnecessaryFullyQualifiedName,UnusedPrivateMethod,CheckResultSet,CollapsibleIfStatements,ForLoopShouldBeWhileLoop,DontImportJavaLang,JumbledIncrementer,OverrideBothEqualsAndHashcode,CheckSkipResult,DontCallThreadRun,TooManyStaticImports,AvoidUsingOctalValues,AvoidBranchingStatementAsLastInLoop,ImportFromSamePackage,ClassCastExceptionWithToArray,BrokenNullCheck,UnusedImports,UnusedModifier,UnusedPrivateField,UnusedFormalParameter,BigIntegerInstantiation";