Bug fixed: wrong class object in the logging
[proteocache.git] / engine / compbio / engine / archive / Archive.java
index a5d3ddd..392a737 100644 (file)
@@ -5,21 +5,17 @@ import java.io.IOException;
 
 import org.apache.log4j.Logger;
 
-import compbio.cassandra.CassandraNativeConnector;
 import compbio.engine.ProteoCachePropertyHelperManager;
 import compbio.util.PropertyHelper;
 
 public class Archive {
        private static final PropertyHelper ph = ProteoCachePropertyHelperManager.getPropertyHelper();
-       private static Logger log = Logger.getLogger(CassandraNativeConnector.class);
+       private static Logger log = Logger.getLogger(Archive.class);
 
        private String archivepath;
        private File archive;
        private boolean archiveexist;
 
-       /*
-        * connect to the cluster and look whether all tables exist
-        */
        public Archive() throws IOException {
                String path = ph.getProperty("archive.path");
                assert (null != path);