diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-03-28 14:18:00 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-03-28 14:18:14 -0400 |
commit | e5a4dea80f2506a7a565508e48aaa52296ff410a (patch) | |
tree | d9d0810b8a3c79d124100073a1b26f2c8b03a8e4 /src/backend/utils/error/elog.c | |
parent | 4b746f0d07c762cf4b421b59a14dfd053eda1761 (diff) | |
download | postgresql-e5a4dea80f2506a7a565508e48aaa52296ff410a.tar.gz postgresql-e5a4dea80f2506a7a565508e48aaa52296ff410a.zip |
Document errhidecontext() where it ought to be documented.
Seems to have been missed when this function was added. Noted while
looking at David Steele's proposal to add another similar function.
Diffstat (limited to 'src/backend/utils/error/elog.c')
-rw-r--r-- | src/backend/utils/error/elog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/error/elog.c b/src/backend/utils/error/elog.c index 458f3aa2b65..8e006097a64 100644 --- a/src/backend/utils/error/elog.c +++ b/src/backend/utils/error/elog.c @@ -1081,7 +1081,7 @@ errhidestmt(bool hide_stmt) * errhidecontext --- optionally suppress CONTEXT: field of log entry * * This should only be used for verbose debugging messages where the repeated - * inclusion of CONTEXT: bloats the log volume too much. + * inclusion of context would bloat the log volume too much. */ int errhidecontext(bool hide_ctx) |