/usr/share/php/propel/connection/DebugPDO.php is in php-propel-runtime 1.6.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | <?php
/**
* This file is part of the Propel package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
/**
* PDO connection subclass that provides some basic support for query counting and logging.
*
* This class is ONLY intended for development use. This class is also a work in-progress
* and, as such, it should be expected that this class' API may change.
*
* The following runtime configuration items affect the behaviour of this class:
*
* - debugpdo.logging.innerglue (default: ": ")
* String to use for combining the title of a detail and its value
*
* - debugpdo.logging.outerglue (default: " | ")
* String to use for combining details together on a log line
*
* - debugpdo.logging.realmemoryusage (default: false)
* Parameter to memory_get_usage() and memory_get_peak_usage() calls
*
* - debugpdo.logging.methods (default: DebugPDO::$defaultLogMethods)
* An array of method names ("Class::method") to be included in method call logging
*
* - debugpdo.logging.onlyslow (default: false)
* Suppress logging of non-slow queries.
*
* - debugpdo.logging.details.slow.enabled (default: false)
* Enables flagging of slow method calls
*
* - debugpdo.logging.details.slow.threshold (default: 0.1)
* Method calls taking more seconds than this threshold are considered slow
*
* - debugpdo.logging.details.time.enabled (default: false)
* Enables logging of method execution times
*
* - debugpdo.logging.details.time.precision (default: 3)
* Determines the precision of the execution time logging
*
* - debugpdo.logging.details.time.pad (default: 10)
* How much horizontal space to reserve for the execution time on a log line
*
* - debugpdo.logging.details.mem.enabled (default: false)
* Enables logging of the instantaneous PHP memory consumption
*
* - debugpdo.logging.details.mem.precision (default: 1)
* Determines the precision of the memory consumption logging
*
* - debugpdo.logging.details.mem.pad (default: 9)
* How much horizontal space to reserve for the memory consumption on a log line
*
* - debugpdo.logging.details.memdelta.enabled (default: false)
* Enables logging differences in memory consumption before and after the method call
*
* - debugpdo.logging.details.memdelta.precision (default: 1)
* Determines the precision of the memory difference logging
*
* - debugpdo.logging.details.memdelta.pad (default: 10)
* How much horizontal space to reserve for the memory difference on a log line
*
* - debugpdo.logging.details.mempeak.enabled (default: false)
* Enables logging the peak memory consumption thus far by the currently executing PHP script
*
* - debugpdo.logging.details.mempeak.precision (default: 1)
* Determines the precision of the memory peak logging
*
* - debugpdo.logging.details.mempeak.pad (default: 9)
* How much horizontal space to reserve for the memory peak on a log line
*
* - debugpdo.logging.details.querycount.enabled (default: false)
* Enables logging of the number of queries performed by the DebugPDO instance thus far
*
* - debugpdo.logging.details.querycount.pad (default: 2)
* How much horizontal space to reserve for the query count on a log line
*
* - debugpdo.logging.details.method.enabled (default: false)
* Enables logging of the name of the method call
*
* - debugpdo.logging.details.method.pad (default: 28)
* How much horizontal space to reserve for the method name on a log line
*
* - debugpdo.logging.connection (default: false)
* Add connectionName in log used for explains
*
* The order in which the logging details are enabled is significant, since it determines the order in
* which they will appear in the log file.
*
* @example // Enable simple query profiling, flagging calls taking over 1.5 seconds as slow:
* $config = Propel::getConfiguration(PropelConfiguration::TYPE_OBJECT);
* $config->setParameter('debugpdo.logging.details.slow.enabled', true);
* $config->setParameter('debugpdo.logging.details.slow.threshold', 1.5);
* $config->setParameter('debugpdo.logging.details.time.enabled', true);
*
* @author Francois Zaninotto
* @author Cameron Brunner <cameron.brunner@gmail.com>
* @author Hans Lellelid <hans@xmpl.org>
* @author Christian Abegg <abegg.ch@gmail.com>
* @author Jarno Rantanen <jarno.rantanen@tkk.fi>
* @since 2006-09-22
* @package propel.runtime.connection
*/
class DebugPDO extends PropelPDO
{
/**
* @var boolean
*/
public $useDebug = true;
}
|