|
From: <jt...@hy...> - 2007-03-26 21:17:46
|
Author: jtravis Date: 2007-03-26 13:17:40 -0800 (Mon, 26 Mar 2007) New Revision: 3910 URL: http://svn.hyperic.org/?view=rev&root=Hyperic+HQ&revision=3910 Modified: trunk/src/org/hyperic/hq/ui/rendit/servlet/RenditServlet.java Log: Inform user where HQU plugins are going Modified: trunk/src/org/hyperic/hq/ui/rendit/servlet/RenditServlet.java =================================================================== --- trunk/src/org/hyperic/hq/ui/rendit/servlet/RenditServlet.java 2007-03-26 21:17:16 UTC (rev 3909) +++ trunk/src/org/hyperic/hq/ui/rendit/servlet/RenditServlet.java 2007-03-26 21:17:40 UTC (rev 3910) @@ -93,6 +93,8 @@ File sysDir = new File(sysPath); RenditServer.getInstance().setSysDir(sysDir); + _log.info("Watching for HQU plugins in [" + + homeDir.getAbsolutePath() + "]"); _watcher = new DirWatcher(homeDir, new DirWatcherCallback() { public void fileAdded(File f) { if (PluginWrapper.isValidPlugin(f)) { |