File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
11
11
*
12
12
* IDENTIFICATION
13
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.429 2008/01/01 19:45:54 momjian Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.430 2008/01/14 19:18:53 tgl Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -4829,6 +4829,16 @@ GUC_complaint_elevel(GucSource source)
4829
4829
*/
4830
4830
elevel = IsUnderPostmaster ? DEBUG3 : LOG ;
4831
4831
}
4832
+ else if (source == PGC_S_OVERRIDE )
4833
+ {
4834
+ /*
4835
+ * If we're a postmaster child, this is probably "undo" during
4836
+ * transaction abort, so we don't want to clutter the log. There's
4837
+ * a small chance of a real problem with an OVERRIDE setting,
4838
+ * though, so suppressing the message entirely wouldn't be desirable.
4839
+ */
4840
+ elevel = IsUnderPostmaster ? DEBUG5 : LOG ;
4841
+ }
4832
4842
else if (source < PGC_S_INTERACTIVE )
4833
4843
elevel = LOG ;
4834
4844
else
You can’t perform that action at this time.
0 commit comments