Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
37e37daa
Commit
37e37daa
authored
22 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Add explanation of the various *_min_messages elog() values.
parent
0a4e3577
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/runtime.sgml
+81
-5
81 additions, 5 deletions
doc/src/sgml/runtime.sgml
with
81 additions
and
5 deletions
doc/src/sgml/runtime.sgml
+
81
−
5
View file @
37e37daa
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.1
19
2002/0
6/16 00:09:11
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.1
20
2002/0
7/05 01:17:20
momjian Exp $
-->
-->
<Chapter Id="runtime">
<Chapter Id="runtime">
...
@@ -801,6 +801,81 @@ env PGOPTIONS='-c geqo=off' psql
...
@@ -801,6 +801,81 @@ env PGOPTIONS='-c geqo=off' psql
detail to the logs. <literal>LOG</> has a different precedence
detail to the logs. <literal>LOG</> has a different precedence
here than in <literal>CLIENT_MIN_MESSAGES</>.
here than in <literal>CLIENT_MIN_MESSAGES</>.
</para>
</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>
</listitem>
</varlistentry>
</varlistentry>
...
@@ -812,10 +887,11 @@ env PGOPTIONS='-c geqo=off' psql
...
@@ -812,10 +887,11 @@ env PGOPTIONS='-c geqo=off' psql
default is <literal>NOTICE</>. Valid values are
default is <literal>NOTICE</>. Valid values are
<literal>DEBUG5</>, <literal>DEBUG4</>, <literal>DEBUG3</>,
<literal>DEBUG5</>, <literal>DEBUG4</>, <literal>DEBUG3</>,
<literal>DEBUG2</>, <literal>DEBUG1</>, <literal>LOG</>,
<literal>DEBUG2</>, <literal>DEBUG1</>, <literal>LOG</>,
<literal>NOTICE</>, <literal>WARNING</>, and <literal>ERROR</>.
<literal>NOTICE</>, <literal>WARNING</>, and <literal>ERROR</>.
Later values send less information to the user. <literal>LOG</>
Later values send less information to the user. <literal>LOG</>
has a different precedence here than in
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>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment