]> granicus.if.org Git - apache/commitdiff
PR:
authorbrian <brian@unknown>
Sat, 7 Feb 1998 00:24:40 +0000 (00:24 +0000)
committerbrian <brian@unknown>
Sat, 7 Feb 1998 00:24:40 +0000 (00:24 +0000)
Playing whack-a-mole; first stab at docs for LogLevel.  Could someone confirm?

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80141 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.html

index c4e74b594b3f685b399f0e3fb65fccd8f3b57ef4..fd8f22399c8504c8e18515c19e3d79ad12f70d2f 100644 (file)
@@ -52,6 +52,7 @@ always available.
 <LI><A HREF="#location">&lt;Location&gt;</A>
 <LI><A HREF="#locationmatch">&lt;LocationMatch&gt;</A>
 <LI><A HREF="#lockfile">LockFile</A>
+<LI><A HREF="#loglevel">LogLevel</A>
 <LI><A HREF="#maxclients">MaxClients</A>
 <LI><A HREF="#maxkeepaliverequests">MaxKeepAliveRequests</A>
 <LI><A HREF="#maxrequestsperchild">MaxRequestsPerChild</A>
@@ -1429,6 +1430,69 @@ server will try to create.<P>
 
 <P><HR>
 
+<H2><A NAME="loglevel">LogLevel directive</A></H2>
+<A
+ HREF="directive-dict.html#Syntax"
+ REL="Help"
+><STRONG>Syntax:</STRONG></A> LogLevel <EM>level</EM><BR>
+<A
+ HREF="directive-dict.html#Default"
+ REL="Help"
+><STRONG>Default:</STRONG></A> <CODE>LogLevel error</CODE><BR>
+<A
+ HREF="directive-dict.html#Context"
+ REL="Help"
+><STRONG>Context:</STRONG></A> server config, virtual host<BR>
+<A
+ HREF="directive-dict.html#Status"
+ REL="Help"
+><STRONG>Status:</STRONG></A> core<BR>
+<A
+ HREF="directive-dict.html#Compatibility"
+ REL="Help"
+><STRONG>Compatibility:</STRONG></A> LogLevel is only available in 1.3 or later.
+
+<P>LogLevel adjusts the verbosity of the messages recorded in the
+error logs.  The following <EM>level</EM>s are available, in order of
+decreasing significance:
+
+<P><TABLE>
+  <TR><TH ALIGN="LEFT"><STRONG>Level</STRONG>
+      <TH ALIGN="LEFT"><STRONG>Description</STRONG>
+  <TR><TH><TH ALIGN="LEFT"><STRONG>Example</STRONG>
+  <TR><TD><CODE>emerg</CODE>
+      <TD>Emergencies - system is unusable.
+  <TR><TD><TD>"Child cannot open lock file.  Exiting"    
+  <TR><TD><CODE>alert</CODE>
+      <TD>Action must be taken immediately.
+  <TR><TD><TD>"getpwuid: couldn't determine user name from uid"
+  <TR><TD><CODE>crit</CODE>
+      <TD>Critical Conditions.
+  <TR><TD><TD>"socket: Failed to get a socket, exiting child"
+  <TR><TD><CODE>error</CODE>
+      <TD>Error conditions.
+  <TR><TD><TD>"Premature end of script headers"
+  <TR><TD><CODE>warn</CODE>
+      <TD>Warning conditions.
+  <TR><TD><TD>"request lost connection to xxx.yyy.zzz.aaa"
+  <TR><TD><CODE>notice</CODE>
+      <TD>Normal but significant condition.
+  <TR><TD><TD>"httpd: caught SIGBUS, attempting to dump core in ..."
+  <TR><TD><CODE>info</CODE>
+      <TD>Informational.
+  <TR><TD><TD>"Server seems busy, (you may need to increase StartServers, or Min/MaxSpareServers)..."
+  <TR><TD><CODE>debug</CODE>
+      <TD>Debug-level messages
+  <TR><TD><TD>"Opening config file ..."
+</TABLE>
+
+<P>When a particular level is specified, messages from all other levels
+of higher significance will be reported as well.  E.g., when 
+<CODE>LogLevel info</CODE> is specified, then messages with log levels of
+<CODE>notice</CODE> and <CODE>warn</CODE> will also be posted.
+
+<P><HR>
+
 <H2><A name="maxclients">MaxClients directive</A></H2>
 <!--%plaintext &lt;?INDEX {\tt MaxClients} directive&gt; -->
 <A