瀏覽代碼

Update log message on post copy entities

pull/20/head
Kristijan Mitrovic 4 年之前
父節點
當前提交
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)


Loading…
取消
儲存