no message
[mir.git] / source / mircoders / storage / DatabaseBreaking.java
index 1a8790a..888bc4e 100755 (executable)
@@ -7,9 +7,9 @@ import java.util.*;
 
 import freemarker.template.*;
 
-import webdb.storage.*;
-import webdb.entity.*;
-import webdb.misc.*;
+import mir.storage.*;
+import mir.entity.*;
+import mir.misc.*;
 
 /**
  * <b>Diese Klasse implementiert die Datenbankverbindung zur MetaObjekt-Tabelle
@@ -32,12 +32,15 @@ public class DatabaseBreaking extends Database implements StorageObject{
        private DatabaseBreaking() throws StorageObjectException
        {
                super();
+    theLog.printDebugInfo("-- outside database");
                this.cache = new HashMap();
                this.theTable="breaking";
                try {
                        this.theEntityClass = Class.forName("mir.entity.EntityBreaking");
                }
                catch (Exception e) { throw new StorageObjectException(e.toString());   }
+
+    theLog.printDebugInfo("-- leaving dbb");
        }