projects
/
postgres-xl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d28ec6e
)
Reduce log level for a message during initdb
author
Pavan Deolasee
<
[email protected]
>
Tue, 12 Apr 2016 10:09:46 +0000
(15:39 +0530)
committer
Pavan Deolasee
<
[email protected]
>
Tue, 12 Apr 2016 10:09:46 +0000
(15:39 +0530)
src/backend/pgxc/nodemgr/nodemgr.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/pgxc/nodemgr/nodemgr.c
b/src/backend/pgxc/nodemgr/nodemgr.c
index 3d05921c42392c9e34d120fc2445b0a87d5be93f..683cd095d54994908378ae09e65ccb45680f9065 100644
(file)
--- a/
src/backend/pgxc/nodemgr/nodemgr.c
+++ b/
src/backend/pgxc/nodemgr/nodemgr.c
@@
-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);
}