You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by ki...@apache.org on 2020/10/13 11:33:59 UTC

[shardingsphere] branch master updated: Polish log (#7777)

This is an automated email from the ASF dual-hosted git repository.

kimmking pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new a5cd101  Polish log (#7777)
a5cd101 is described below

commit a5cd101236ec5dc30551769d13c01fc62f247b28
Author: Liang Zhang <te...@163.com>
AuthorDate: Tue Oct 13 19:32:46 2020 +0800

    Polish log (#7777)
---
 .../model/physical/model/schema/PhysicalSchemaMetaDataLoader.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/metadata/model/physical/model/schema/PhysicalSchemaMetaDataLoader.java b/shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/metadata/model/physical/model/schema/PhysicalSchemaMetaDataLoader.java
index fcdda35..a009e9e 100644
--- a/shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/metadata/model/physical/model/schema/PhysicalSchemaMetaDataLoader.java
+++ b/shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/metadata/model/physical/model/schema/PhysicalSchemaMetaDataLoader.java
@@ -61,7 +61,7 @@ public final class PhysicalSchemaMetaDataLoader {
             result = loadAllTableNames(connectionAdapter);
             result.removeAll(excludedTableNames);
         }
-        log.info("Loading {} tables' meta data.", result.size());
+        log.info("Loading {} tables' meta data for unconfigured tables.", result.size());
         if (result.isEmpty()) {
             return Collections.emptyList();
         }