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
37e37daa
Commit
37e37daa
authored
Jul 05, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add explanation of the various *_min_messages elog() values.
parent
0a4e3577
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
81 additions
and
5 deletions
+81
-5
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+81
-5
No files found.
doc/src/sgml/runtime.sgml
View file @
37e37daa
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.1
19 2002/06/16 00:09:11
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.1
20 2002/07/05 01:17:20
momjian Exp $
-->
<Chapter Id="runtime">
...
...
@@ -801,6 +801,81 @@ env PGOPTIONS='-c geqo=off' psql
detail to the logs. <literal>LOG</> has a different precedence
here than in <literal>CLIENT_MIN_MESSAGES</>.
</para>
<para>
Here is a summary of the various message types:
<variablelist>
<varlistentry>
<term><varname>DEBUG[1-5]</varname></term>
<listitem>
<para>
This provides information for use by developers.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>INFO</varname></term>
<listitem>
<para>
This provides information requested by the user, e.g.
<command>SET</>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>NOTICE</varname></term>
<listitem>
<para>
This provides information that may be helpful to users, e.g.
truncation of long identifiers, sequence creation as part of
<command>SERIAL</>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>WARNING</varname></term>
<listitem>
<para>
This provides warnings to the user, e.g. <command>COMMIT</>
outside a transaction.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>ERROR</varname></term>
<listitem>
<para>
Reports the error that caused the transaction to abort.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>LOG</varname></term>
<listitem>
<para>
This reports information of interest to administrators, e.g.
checkpoint activity.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>FATAL</varname></term>
<listitem>
<para>
This reports why the backend session terminated.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><varname>PANIC</varname></term>
<listitem>
<para>
This reports why all backends restarted.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</listitem>
</varlistentry>
...
...
@@ -815,7 +890,8 @@ env PGOPTIONS='-c geqo=off' psql
<literal>NOTICE</>, <literal>WARNING</>, and <literal>ERROR</>.
Later values send less information to the user. <literal>LOG</>
has a different precedence here than in
<literal>SERVER_MIN_MESSAGES</>.
<literal>SERVER_MIN_MESSAGES</>. Also see that section for an
explanation of the various values.
</para>
</listitem>
</varlistentry>
...
...
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