Explorar el Código

Update log message on post copy entities

pull/20/head
Kristijan Mitrovic hace 4 años
padre
commit
97dcf0c42f
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      bubble-server/src/main/java/bubble/service/dbfilter/FilteredEntityIterator.java

+ 2
- 1
bubble-server/src/main/java/bubble/service/dbfilter/FilteredEntityIterator.java Ver fichero

@@ -80,7 +80,8 @@ public class FilteredEntityIterator extends EntityIterator {
if (!AccountOwnedEntityDAO.class.isAssignableFrom(dao.getClass())) {
log.debug("iterate: skipping entity: " + c.getSimpleName());
} else if (isPostCopyEntity(c)) {
log.debug("iterate: skipping " + c.getSimpleName() + ", will copy after other objects are copied");
log.debug("iterate: skipping " + c.getSimpleName()
+ ", will copy some of these after other objects are copied");
} else {
// copy entities. this is how the re-keying works (decrypt using current spring config,
// encrypt using new config)


Cargando…
Cancelar
Guardar