Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
4e15b923
Commit
4e15b923
authored
Mar 06, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve elog descriptions.
parent
e6227fd0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
src/include/utils/elog.h
src/include/utils/elog.h
+12
-11
No files found.
src/include/utils/elog.h
View file @
4e15b923
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: elog.h,v 1.3
4 2002/03/06 06:10:33
momjian Exp $
* $Id: elog.h,v 1.3
5 2002/03/06 06:23:20
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -21,19 +21,20 @@
#define DEBUG3 12
#define DEBUG2 13
#define DEBUG1 14
#define LOG 15
/* Server operational
history
messages;
#define LOG 15
/* Server operational messages;
* sent only to server log by default. */
#define COMMERROR 16
/* Client communication problems; same as
* LOG for server reporting, but never
ever
* t
ry to send t
o client. */
#define INFO 17
/* Informative messages that a
lways sent to the
* cl
ent; is not affected by client_min_messages */
#define NOTICE 18
/* Important messages, for unusual cases that
* should be reported but are not serious
*
enough to abort the query. S
ent to client
* LOG for server reporting, but never
sent
* to client. */
#define INFO 17
/* Informative messages that a
re always sent to
* cl
ient; is not affected by
* client_min_messages */
#define NOTICE 18
/* Helpful messages to users about query
*
operation; s
ent to client
* and server log by default. */
#define WARNING 19
/* Important warnings */
#define ERROR 20
/* user error - return to known state */
#define WARNING 19
/* Warnings */
#define ERROR 20
/* user error - abort transaction; return to known
* state */
#define FATAL 21
/* fatal error - abort process */
#define PANIC 22
/* take down the other backends with me */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment