Changeset 331 for trunk/lib/App.inc.php


Ignore:
Timestamp:
May 6, 2008 7:49:25 PM (16 years ago)
Author:
quinn
Message:

Truncating output from getDump when used for logging.

File:
1 edited

Legend:

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

    r325 r331  
    662662                // Copy the value of the specified query argument into the _carry_queries array.
    663663                $this->_carry_queries[$k] = getFormData($k, $default);
    664                 $this->logMsg(sprintf('Carrying query: %s => %s', $k, $this->_carry_queries[$k]), LOG_DEBUG, __FILE__, __LINE__);
     664                $this->logMsg(sprintf('Carrying query: %s => %s', $k, truncate(getDump($this->_carry_queries[$k], true), 128, 'end')), LOG_DEBUG, __FILE__, __LINE__);
    665665            }
    666666        }
Note: See TracChangeset for help on using the changeset viewer.