View source with formatted comments or as raw
   1:- module(conf_logging, []).
   2:- use_module(library(settings)).
   3
   4/** <module> Configure logging of HTTP traffic
   5
   6Configure logging of HTTP traffic.
   7
   8@tbd	Include programs to convert and process log-files.
   9*/
  10
  11		 /*******************************
  12		 *	      LOGGING		*
  13		 *******************************/
  14
  15% Log  HTTP  traffic  to  httpd.log.    Logging   may  seriously  affect
  16% performance on servers that handle many tiny requests.
  17
  18:- use_module(library(http/http_log)).
  19
  20% Set the default name of the logfile. Setting it to '' disables logging
  21% Creating the logfile in a directory is preferred if the service is not
  22% running under the same user as the owner of the sources.
  23
  24:- set_setting_default(http:logfile, 'log/httpd.log').