aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r--src/backend/tcop/postgres.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 1eaaf3c6c58..1a34bd3715f 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -2479,7 +2479,7 @@ errdetail_params(ParamListInfo params)
str = BuildParamLogString(params, NULL, log_parameter_max_length);
if (str && str[0] != '\0')
- errdetail("parameters: %s", str);
+ errdetail("Parameters: %s", str);
}
return 0;
@@ -2494,7 +2494,7 @@ static int
errdetail_abort(void)
{
if (MyProc->recoveryConflictPending)
- errdetail("abort reason: recovery conflict");
+ errdetail("Abort reason: recovery conflict");
return 0;
}