From f18d0df18fd03557c8d2324a51320e32410c745b Mon Sep 17 00:00:00 2001 From: brian Date: Sat, 7 Feb 1998 00:24:40 +0000 Subject: [PATCH] PR: 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 | 64 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index c4e74b594b..fd8f22399c 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -52,6 +52,7 @@ always available.
  • <Location>
  • <LocationMatch>
  • LockFile +
  • LogLevel
  • MaxClients
  • MaxKeepAliveRequests
  • MaxRequestsPerChild @@ -1429,6 +1430,69 @@ server will try to create.


    +

    LogLevel directive

    +Syntax: LogLevel level
    +Default: LogLevel error
    +Context: server config, virtual host
    +Status: core
    +Compatibility: LogLevel is only available in 1.3 or later. + +

    LogLevel adjusts the verbosity of the messages recorded in the +error logs. The following levels are available, in order of +decreasing significance: + +

    +
    Level + Description +
    Example +
    emerg + Emergencies - system is unusable. +
    "Child cannot open lock file. Exiting" +
    alert + Action must be taken immediately. +
    "getpwuid: couldn't determine user name from uid" +
    crit + Critical Conditions. +
    "socket: Failed to get a socket, exiting child" +
    error + Error conditions. +
    "Premature end of script headers" +
    warn + Warning conditions. +
    "request lost connection to xxx.yyy.zzz.aaa" +
    notice + Normal but significant condition. +
    "httpd: caught SIGBUS, attempting to dump core in ..." +
    info + Informational. +
    "Server seems busy, (you may need to increase StartServers, or Min/MaxSpareServers)..." +
    debug + Debug-level messages +
    "Opening config file ..." +
    + +

    When a particular level is specified, messages from all other levels +of higher significance will be reported as well. E.g., when +LogLevel info is specified, then messages with log levels of +notice and warn will also be posted. + +


    +

    MaxClients directive