summaryrefslogtreecommitdiffstatshomepage
path: root/doc/developers/debugging.rst
diff options
context:
space:
mode:
authorGravatar Christian Weiske2011-05-26 08:20:04 +0200
committerGravatar Christian Weiske2011-05-26 08:20:04 +0200
commit18989f97f1c4299f447b011c28961ca5c8310c13 (patch)
tree3ecf5ac1572f064d461209514d1568f216536839 /doc/developers/debugging.rst
parentb279ded75769818ae78ca11654ecef935d6cb956 (diff)
downloadscuttle-18989f97f1c4299f447b011c28961ca5c8310c13.tar.gz
scuttle-18989f97f1c4299f447b011c28961ca5c8310c13.zip
documentation index
Diffstat (limited to 'doc/developers/debugging.rst')
-rw-r--r--doc/developers/debugging.rst20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/developers/debugging.rst b/doc/developers/debugging.rst
new file mode 100644
index 0000000..7f84da6
--- /dev/null
+++ b/doc/developers/debugging.rst
@@ -0,0 +1,20 @@
+How to debug SemanticScuttle
+============================
+
+
+Database queries
+----------------
+In config.php, enable debugMode.
+Further, add the following there:
+-------
+register_shutdown_function(
+ create_function('', <<<FNC
+\$GLOBALS['db'] = SemanticScuttle_Service_Factory::getDb();
+\$GLOBALS['db']->sql_report('display');
+FNC
+ )
+);
+------
+To see database queries in SemanticScuttle, add
+> ?explain=1
+to your URL.