From feffa25905c80cdab114ff90db135a48e3a71f4e Mon Sep 17 00:00:00 2001
From: Christopher Powell
Date: Wed, 18 Dec 2002 01:39:28 +0000
Subject: Removed message about insufficient info to log.

---
 CHANGELOG                       |  3 +--
 Documentation/documentation.lyx | 27 +++------------------------
 mod_log_sql.c                   |  1 -
 3 files changed, 4 insertions(+), 27 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 2e925bd..43624c0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-$Id: CHANGELOG,v 1.19 2002/12/18 01:06:32 helios Exp $
+$Id: CHANGELOG,v 1.20 2002/12/18 01:39:28 helios Exp $
 
 TODO:
 * Rethink documentation flow and rewrite?
@@ -43,7 +43,6 @@ CHANGES:
 * Renamed safe_mysql_query() to safe_sql_query().
 * Now check for minimum configuration info to establish db link and
   log an error if it's insufficient.
-* Log a message if the config is insufficient for logging.
 
 
 1.17:
diff --git a/Documentation/documentation.lyx b/Documentation/documentation.lyx
index ba02f76..a678315 100644
--- a/Documentation/documentation.lyx
+++ b/Documentation/documentation.lyx
@@ -675,15 +675,15 @@ sources
 , find using 'locate ABOUT_APACHE' 
 \layout Description
 
-APACHEHEADERS: The location of your Apache header files, find using 'locate
+APACHEHEADERS: the location of your Apache header files, find using 'locate
  httpd.h'
 \layout Description
 
-MYSQLLIBRARIES: The location of your MySQL libraries, find using 'locate
+MYSQLLIBRARIES: the location of your MySQL libraries, find using 'locate
  libmysqlclient.so'
 \layout Description
 
-MYSQLHEADERS: The location of your MySQL header files, find using 'locate
+MYSQLHEADERS: the location of your MySQL header files, find using 'locate
  mysql.h'
 \end_deeper 
 \layout Enumerate
@@ -5862,27 +5862,6 @@ Why do I get the message
 \begin_inset Quotes eld
 \end_inset 
 
-configuration info is insufficient to log
-\begin_inset Quotes erd
-\end_inset 
-
- in my Apache error log?
-\layout Standard
-
-At a minimum, 
-\noun on 
-LogSQLTransferLogTable
-\noun default 
- must be defined for the module to even attempt logging.
- If this directive is not defined for the server (or virtual server) you
- will receive this error message.
- 
-\layout Subsubsection
-
-Why do I get the message 
-\begin_inset Quotes eld
-\end_inset 
-
 insufficient configuration info to establish database link
 \begin_inset Quotes erd
 \end_inset 
diff --git a/mod_log_sql.c b/mod_log_sql.c
index d604e78..f02243e 100644
--- a/mod_log_sql.c
+++ b/mod_log_sql.c
@@ -1366,7 +1366,6 @@ int log_sql_transaction(request_rec *orig)
 
 	/* Do we have enough info to log? */
 	if (!cls->transfer_table_name) {
-		ap_log_error(APLOG_MARK,ERRLEVEL,orig->server,"mod_log_sql: configuration info is insufficient to log (hint: LogSQLTransferLogTable)");
 		return DECLINED;
 	} else {
 		const char *thehost;
-- 
cgit