This is an automated email from the ASF dual-hosted git repository. abulatski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cayenne.git
The following commit(s) were added to refs/heads/master by this push: new 400cabe Cleanup dbImport action logs. 400cabe is described below commit 400cabe27c23e9f82997fa56888fe0487f443b36 Author: Arseni Bulatski <ancars...@gmail.com> AuthorDate: Thu Jul 11 16:32:46 2019 +0300 Cleanup dbImport action logs. --- .../apache/cayenne/dbsync/reverse/dbimport/DefaultDbImportAction.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cayenne-dbsync/src/main/java/org/apache/cayenne/dbsync/reverse/dbimport/DefaultDbImportAction.java b/cayenne-dbsync/src/main/java/org/apache/cayenne/dbsync/reverse/dbimport/DefaultDbImportAction.java index 57f0fdb..f20ae84 100644 --- a/cayenne-dbsync/src/main/java/org/apache/cayenne/dbsync/reverse/dbimport/DefaultDbImportAction.java +++ b/cayenne-dbsync/src/main/java/org/apache/cayenne/dbsync/reverse/dbimport/DefaultDbImportAction.java @@ -186,7 +186,8 @@ public class DefaultDbImportAction implements DbImportAction { putReverseEngineeringToConfig(dataMapReverseEngineering, config); } if ((dataMapReverseEngineering != null) && (!config.isUseDataMapReverseEngineering())) { - logger.warn("Found several dbimport configs. Configuration selected from 'build.gradle' file."); + logger.warn("Found several dbimport configs. DataMap dbimport config was skipped. " + + "Configuration selected from build file"); } if ((dataMapReverseEngineering == null) && (config.isUseDataMapReverseEngineering())) { logger.warn("Missing dbimport config. Database is imported completely.");