diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-05-24 18:56:21 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-05-24 18:57:56 -0400 |
commit | 92ecb148e517704ec945dce513db71fee7790cfd (patch) | |
tree | f955f56a5ccfba9bd15a4d9d94622ea4073b86c9 /src/backend/replication/logical/launcher.c | |
parent | 85c2b9a15a1d667b1e2cd580da8c1d9fef0af1e8 (diff) | |
download | postgresql-92ecb148e517704ec945dce513db71fee7790cfd.tar.gz postgresql-92ecb148e517704ec945dce513db71fee7790cfd.zip |
Improve logical replication worker log messages
Reduce some redundant messages to DEBUG1. Be clearer about the
distinction between apply workers and table synchronization workers.
Add subscription and table name where possible.
Reviewed-by: Masahiko Sawada <sawada.mshk@gmail.com>
Diffstat (limited to 'src/backend/replication/logical/launcher.c')
-rw-r--r-- | src/backend/replication/logical/launcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/launcher.c b/src/backend/replication/logical/launcher.c index 4e2c350dc7e..b956052014b 100644 --- a/src/backend/replication/logical/launcher.c +++ b/src/backend/replication/logical/launcher.c @@ -260,7 +260,7 @@ logicalrep_worker_launch(Oid dbid, Oid subid, const char *subname, Oid userid, int nsyncworkers; TimestampTz now; - ereport(LOG, + ereport(DEBUG1, (errmsg("starting logical replication worker for subscription \"%s\"", subname))); |