Просмотр исходного кода

Update log message on post copy entities

pull/20/head
Kristijan Mitrovic 4 лет назад
Родитель
Сommit
97dcf0c42f
1 измененных файлов: 2 добавлений и 1 удалений
  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 Просмотреть файл

@@ -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)


Загрузка…
Отмена
Сохранить