Index: xml-cocoon2/src/org/apache/cocoon/components/store/FilesystemStore.java
===================================================================
RCS file: /home/cvspublic/xml-cocoon2/src/org/apache/cocoon/components/store/FilesystemStore.java,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 FilesystemStore.java
--- xml-cocoon2/src/org/apache/cocoon/components/store/FilesystemStore.java	2001/05/09 20:50:00	1.1.1.1
+++ xml-cocoon2/src/org/apache/cocoon/components/store/FilesystemStore.java	2001/07/12 20:18:33
@@ -9,6 +9,7 @@
 
 import java.io.File;
 import java.io.IOException;
+import java.net.URLEncoder;
 import java.util.Enumeration;
 import org.apache.avalon.framework.context.Context;
 import org.apache.avalon.framework.context.ContextException;
@@ -82,12 +83,13 @@
    * Get the file associated with the given unique key name.
    */
   public Object get(Object key) {
+    getLogger().debug("FilesystemStore get(): Get file with key: " + key.toString());
     File file = fileFromKey(key);
 
     if (file != null && file.exists()) {
+      getLogger().debug("FilesystemStore get(): Found file with key: " + key.toString());
       return file;
     }
-
     return null;
   }
 
