浏览代码

Update log message on post copy entities

pull/20/head
父节点
当前提交
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)


正在加载...
取消
保存