Turned off debugging code that was left on.

git-svn-id: file:///svn-source/pmgr/branches/yafr_20090716/site@594 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-08-17 02:52:47 +00:00
parent 23cdd0e497
commit ebd80a8313
4 changed files with 6 additions and 6 deletions

View File

@@ -53,7 +53,7 @@ class DoubleEntry extends AppModel {
*/ */
function addDoubleEntry($entry1, $entry2, $entry1_tender = null) { function addDoubleEntry($entry1, $entry2, $entry1_tender = null) {
$this->prFunctionLevel(16); //$this->prFunctionLevel(16);
$this->prEnter(compact('entry1', 'entry2', 'entry1_tender')); $this->prEnter(compact('entry1', 'entry2', 'entry1_tender'));
$ret = array(); $ret = array();

View File

@@ -127,7 +127,7 @@ class LedgerEntry extends AppModel {
* - Inserts new Ledger Entry into the database * - Inserts new Ledger Entry into the database
*/ */
function addLedgerEntry($entry, $tender = null) { function addLedgerEntry($entry, $tender = null) {
$this->prFunctionLevel(16); //$this->prFunctionLevel(16);
$this->prEnter(compact('entry', 'tender')); $this->prEnter(compact('entry', 'tender'));
$ret = array('data' => $entry); $ret = array('data' => $entry);

View File

@@ -23,7 +23,7 @@ class StatementEntry extends AppModel {
); );
var $default_log_level = array('log' => 30, 'show' => 15); //var $default_log_level = array('log' => 30, 'show' => 15);
var $max_log_level = 19; var $max_log_level = 19;
/************************************************************************** /**************************************************************************
@@ -258,7 +258,7 @@ class StatementEntry extends AppModel {
} }
function reconciledSet($set, $query = null, $unrec = false, $if_rec_include_partial = false) { function reconciledSet($set, $query = null, $unrec = false, $if_rec_include_partial = false) {
$this->prFunctionLevel(array('log' => 16, 'show' => 10)); //$this->prFunctionLevel(array('log' => 16, 'show' => 10));
$this->prEnter(compact('set', 'query', 'unrec', 'if_rec_include_partial')); $this->prEnter(compact('set', 'query', 'unrec', 'if_rec_include_partial'));
$lquery = $this->reconciledSetQuery($set, $query); $lquery = $this->reconciledSetQuery($set, $query);
$result = $this->find('all', $lquery); $result = $this->find('all', $lquery);
@@ -645,7 +645,7 @@ class StatementEntry extends AppModel {
* - Returns summary data from the requested statement entry * - Returns summary data from the requested statement entry
*/ */
function stats($id = null, $query = null) { function stats($id = null, $query = null) {
$this->prFunctionLevel(array('log' => 16, 'show' => 10)); //$this->prFunctionLevel(array('log' => 16, 'show' => 10));
$this->prEnter(compact('id', 'query')); $this->prEnter(compact('id', 'query'));
$this->queryInit($query); $this->queryInit($query);

View File

@@ -50,7 +50,7 @@ class Transaction extends AppModel {
); );
var $default_log_level = array('log' => 30, 'show' => 15); //var $default_log_level = array('log' => 30, 'show' => 15);
//var $max_log_level = 10; //var $max_log_level = 10;
/************************************************************************** /**************************************************************************