Commit a06b3bce07508d1038cc66a0c8a49778c1fc0432

Authored by Michael Joseph
1 parent 727bffbf

removed debug logging


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@626 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 1 additions and 1 deletions
lib/database/lookup.inc
... ... @@ -54,7 +54,7 @@ function lookupField($tableName, $selectFieldName, $whereFieldName, $whereFieldV
54 54 global $default;
55 55 $sql = new Owl_DB();
56 56 $query = "select $selectFieldName from $tableName where $whereFieldName = '". $whereFieldValue . "'" ;
57   - $default->log->debug("lookup.inc::lookupField query=$query");
  57 +
58 58 if ($sql->query($query)) {
59 59 if ($sql->next_record()) {
60 60 return $sql->f($selectFieldName);
... ...