Adding new stuff comments (logging, error dialog,...)

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@1654 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Philippe Herlin
2003-03-30 20:54:44 +00:00
parent 65d11a854f
commit 008e6128dc
2 changed files with 33 additions and 2 deletions

View File

@ -1,13 +1,19 @@
Change log for the PMD Eclipse plugin
-------------------------------------
vV.R.M - release date
v0.5.1 - release date
Runtime
-------
. Fixing SWTException when PMD is run on a file with syntax error
(thanks to Chris Grindstaff)
. Generalize above fix for all message dialog in the plugin
. Adding logging facility to help support (using commons-logging and Log4J)
. Removing error dialog when PMD is executed on a file with syntax error
(the PMD exception is logged as a warning)
. Adding PMD actions on folder and package popup menus
(request nnnnnn from Vladimir Bossica)

View File

@ -1,4 +1,29 @@
Release notes for the PMD Eclipse Plugin
----------------------------------------
v0.5.1 - release date
NEW : Adding a logging facility
-------------------------------
The logging support is based on Log4J from Apache (see: http://jakarta.apache.org/log4j).
The default is to log at the warn level to the file "pmd-eclipse.log" using a rolling
file appender of 10 MB and one backup file.
The file is located in the {user.dir} directory which should be your Eclipse home
directory
To change these options, simply edit the "log4j.xml" file located in the plugin. Please
read the Log4J doc to learn how to update this file.
NEW : PMD actions from folder and package popups
------------------------------------------------
Now, PMD actions (check code and remove markers) are available from the popup menus of
a folder (resource navigator view) and package (package explorer view).
UPDATED :
---------
Now, no more error message is displayed when PMD is executed against a file with syntax
errors.
v0.5.0 - 19/03/2003