diff servlet/src/digilib/io/Directory.java @ 295:90bab835fc25

Servlet version 1.5.0b -- the beginning of the next generation :-) - code restructuring to improve scaleability - new Initialiser servlet that must be run first - image transformation work moved to DigilibImageWorker class - Maximum number of concurrent threads limited by Semaphore - old JIMI toolkit implementation removed
author robcast
date Sun, 24 Oct 2004 20:23:50 +0200
parents 87dca7119596
children 4a45cd965133
line wrap: on
line diff
--- a/servlet/src/digilib/io/Directory.java	Sun Oct 24 20:23:49 2004 +0200
+++ b/servlet/src/digilib/io/Directory.java	Sun Oct 24 20:23:50 2004 +0200
@@ -82,10 +82,10 @@
 	 */
 	public boolean readDir() {
 		if (dir != null) {
-			logger.debug("reading dir: "+dir.getPath());
+			//logger.debug("reading dir: "+dir.getPath());
 			list = dir.list();
 			Arrays.sort(list);
-			logger.debug("  done");
+			//logger.debug("  done");
 		}
 		return (list != null);
 	}