summaryrefslogtreecommitdiff
path: root/src/backend/utils/error/elog.c
Commit message (Expand)AuthorAgeFilesLines
* Fix problem with infinite recursion between write_syslogger_file andTom Lane2005-03-121-7/+12
* Cause Win32 to output to the event log rather than stderr by default.Bruce Momjian2005-02-271-1/+12
* Use _() macro consistently rather than gettext(). Add translationBruce Momjian2005-02-221-28/+28
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* Make getpid() use %d consistently for printing.Bruce Momjian2004-10-091-4/+4
* Suppress timezone output on log_line_prefix %t on Win32, because it isBruce Momjian2004-10-091-1/+6
* Adjust comments previously moved to column 1 by pgident.Bruce Momjian2004-10-071-2/+2
* This patch from Alvaro Herrera adds transaction ID to the list ofNeil Conway2004-09-221-3/+12
* On further consideration, there's another problem here: the existingTom Lane2004-09-051-6/+37
* Tweak elog.c's logic for promoting errors into more severe errors.Tom Lane2004-09-051-94/+89
* Pgindent run for 8.0.Bruce Momjian2004-08-291-80/+86
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Create a built-in log rotation program, so that we no longer have toTom Lane2004-08-051-2/+7
* Add LOG_NOWAIT flag to openlog() call, per my note of 2004-06-24.Tom Lane2004-08-041-2/+2
* Restructure error handling as recently discussed. It is now reallyTom Lane2004-07-311-124/+267
* Revert ill-conceived patch that made elog(FATAL) the same as elog(ERROR)Tom Lane2004-07-281-13/+2
* Replace direct fprintf(stderr) calls by write_stderr(), and cause thisTom Lane2004-06-241-1/+35
* Add comment about rationale for continuing to use C library functionsTom Lane2004-06-211-1/+11
* Adjust our timezone library to use pg_time_t (typedef'd as int64) inTom Lane2004-06-031-6/+8
* Separate out bgwriter code into a logically separate module, ratherTom Lane2004-05-291-1/+2
* Make sure elog behaves sanely if invoked before GUC initializes.Tom Lane2004-05-281-2/+2
* Integrate src/timezone library for all platforms. There is more we canTom Lane2004-05-211-7/+6
* Solve the 'Turkish problem' with undesirable locale behavior for caseTom Lane2004-05-071-9/+9
* Per discussion earlier today, here is a fix that lets ereport() on win32Bruce Momjian2004-04-221-1/+6
* Handle Warn_restart_ready properly in SIGTERM safety patch.Bruce Momjian2004-04-161-1/+5
* Exit backend from SIGTERM or FATAL by simulating client EOF, rather thanBruce Momjian2004-04-111-2/+9
* Remove 'syslog' GUC variable, and add more logical 'log_destination'Bruce Momjian2004-04-051-20/+66
* Standardize output buffer size and display format for strftime;Tom Lane2004-03-221-5/+5
* Revise syntax-error reporting behavior to give pleasant results forTom Lane2004-03-211-2/+110
* Code review for log_line_prefix patch. Cooperate with StringInfo insteadTom Lane2004-03-191-130/+135
* Remove GUC log_statement, log_pid, log_timestamp, log_source_port.Bruce Momjian2004-03-151-48/+3
* Add:Bruce Momjian2004-03-091-5/+145
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-291-1/+1
* Fix elog tab-insertion code to insert tabs only where wanted.Tom Lane2003-10-171-30/+38
* Have log_min_duration_statement = 0 always print duration/statement.Bruce Momjian2003-10-081-2/+27
* Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut2003-09-251-4/+4
* Work around ENOTEMPTY being an alias for EEXIST on some platforms.Tom Lane2003-09-031-1/+3
* Share PG_DIAG_* macros between client and server and use them internally.Peter Eisentraut2003-08-271-11/+11
* Use separate SQLSTATE codes for file not found/file exists, rather thanTom Lane2003-08-261-6/+6
* Another pgindent run with updated typedefs.Bruce Momjian2003-08-081-8/+8
* Update copyrights to 2003.Bruce Momjian2003-08-041-2/+2
* pgindent run.Bruce Momjian2003-08-041-86/+87
* Reconsider context for calling callback functions --- original ideaTom Lane2003-08-031-13/+11
* elog mop-up: bring some straggling fprintf(stderr)'s into the elog world.Tom Lane2003-07-271-8/+4
* Error message editing in backend/libpq, backend/postmaster, backend/tcop.Tom Lane2003-07-221-1/+37
* First bits of work on error message editing.Tom Lane2003-07-181-5/+84
* Add GUC option log_error_verbosity to control which fields of errorTom Lane2003-06-301-20/+50
* Fix things so that an error occuring during standalone-backend processingTom Lane2003-05-281-12/+22
* In bootstrap and standalone-backend modes, do not sort LOG elevel outTom Lane2003-05-281-16/+24
* Infrastructure for upgraded error reporting mechanism. elog.c isTom Lane2003-04-241-401/+855