19 lines
296 B
Plaintext
19 lines
296 B
Plaintext
The PostDebug plugin records detailed data on POSTs requests.
|
|
|
|
Installation
|
|
============
|
|
add "addPlugin('PostDebug');"
|
|
to the bottom of your config.php
|
|
|
|
Settings
|
|
========
|
|
dir: The directory where the log file will be saved
|
|
|
|
Example
|
|
=======
|
|
|
|
addPlugin('PostDebug', array(
|
|
'dir' => '/tmp'
|
|
));
|
|
|