Reduce log level for a message during initdb
authorPavan Deolasee <[email protected]>
Tue, 12 Apr 2016 10:09:46 +0000 (15:39 +0530)
committerPavan Deolasee <[email protected]>
Tue, 12 Apr 2016 10:09:46 +0000 (15:39 +0530)
src/backend/pgxc/nodemgr/nodemgr.c

index 3d05921c42392c9e34d120fc2445b0a87d5be93f..683cd095d54994908378ae09e65ccb45680f9065 100644 (file)
@@ -743,7 +743,7 @@ PgxcNodeCreate(CreateNodeStmt *stmt)
        if (node_port == 0)
        {
                node_port = 5432;
-               elog(LOG, "PGXC node %s: Applying default port value: %d",
+               elog(DEBUG1, "PGXC node %s: Applying default port value: %d",
                         node_name, node_port);
        }
 
@@ -751,7 +751,7 @@ PgxcNodeCreate(CreateNodeStmt *stmt)
        if (!node_host)
        {
                node_host = strdup("localhost");
-               elog(LOG, "PGXC node %s: Applying default host value: %s",
+               elog(DEBUG1, "PGXC node %s: Applying default host value: %s",
                         node_name, node_host);
        }