mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Make log_min_error_statement put LOG level at the same priority as
log_min_messages does; and arrange to suppress the duplicative output that would otherwise result from log_statement and log_duration messages. Bruce Momjian and Tom Lane.
This commit is contained in:
		@@ -7,7 +7,7 @@
 | 
			
		||||
 * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
 | 
			
		||||
 * Portions Copyright (c) 1994, Regents of the University of California
 | 
			
		||||
 *
 | 
			
		||||
 * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.83 2007/01/05 22:19:59 momjian Exp $
 | 
			
		||||
 * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.84 2007/03/02 23:37:23 tgl Exp $
 | 
			
		||||
 *
 | 
			
		||||
 *-------------------------------------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
@@ -137,6 +137,8 @@ errcontext(const char *fmt,...)
 | 
			
		||||
   the supplied arguments. */
 | 
			
		||||
__attribute__((format(printf, 1, 2)));
 | 
			
		||||
 | 
			
		||||
extern int	errhidestmt(bool hide_stmt);
 | 
			
		||||
 | 
			
		||||
extern int	errfunction(const char *funcname);
 | 
			
		||||
extern int	errposition(int cursorpos);
 | 
			
		||||
 | 
			
		||||
@@ -240,6 +242,7 @@ typedef struct ErrorData
 | 
			
		||||
	bool		output_to_server;		/* will report to server log? */
 | 
			
		||||
	bool		output_to_client;		/* will report to client? */
 | 
			
		||||
	bool		show_funcname;	/* true to force funcname inclusion */
 | 
			
		||||
	bool		hide_stmt;		/* true to prevent STATEMENT: inclusion */
 | 
			
		||||
	const char *filename;		/* __FILE__ of ereport() call */
 | 
			
		||||
	int			lineno;			/* __LINE__ of ereport() call */
 | 
			
		||||
	const char *funcname;		/* __func__ of ereport() call */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user