Ignore:
Timestamp:
Jul 7, 2006 10:53:09 PM (18 years ago)
Author:
scdev
Message:

Q - increased some LOG_DEBUG messages to LOG_INFO so we can run with debugging off and still get the important ones.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Auth_SQL.inc.php

    r199 r201  
    135135            if ($recreate_db) {
    136136                $db->query("DROP TABLE IF EXISTS " . $this->getParam('db_table'));
    137                 $app->logMsg(sprintf('Dropping and recreating table %s.', $this->getParam('db_table')), LOG_DEBUG, __FILE__, __LINE__);
     137                $app->logMsg(sprintf('Dropping and recreating table %s.', $this->getParam('db_table')), LOG_INFO, __FILE__, __LINE__);
    138138            }
    139139
     
    192192                if ($recreate_db) {
    193193                    $db->query("DROP TABLE IF EXISTS " . $this->getParam('db_login_table'));
    194                     $app->logMsg(sprintf('Dropping and recreating table %s.', $this->getParam('db_login_table')), LOG_DEBUG, __FILE__, __LINE__);
     194                    $app->logMsg(sprintf('Dropping and recreating table %s.', $this->getParam('db_login_table')), LOG_INFO, __FILE__, __LINE__);
    195195                }
    196196                $db->query("CREATE TABLE IF NOT EXISTS " . $this->getParam('db_login_table') . " (
Note: See TracChangeset for help on using the changeset viewer.