no message
[mir.git] / source / mircoders / storage / DatabaseBreaking.java
index 2a9ad58..888bc4e 100755 (executable)
@@ -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");
        }