diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index 3a35de11..8142f3d2 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -100,7 +100,7 @@
Enabling debug mode on a public server may result in malicious clients retrieving sensitive data about your server and possibly gaining access to it. Do not enable debug mode on a public server, unless you understand the implications of your doing!
+Enabling debug mode on a public server may result in malicious clients retrieving sensitive data about your server and possibly gaining access to it. +Do not enable debug mode on a public server, unless you understand the implications of your doing!
Debug mode enables error reporting and prevents loading data from the cache (data is still written to the cache).
To enable debug mode, set in config.ini.php
:
RSS-Bridge will give you a visual feedback when debug mode is enabled.
-While debug mode is active, RSS-Bridge will write additional data to your servers error.log
.
Debug mode is controlled by the static class Debug
. It provides three core functions:
Debug::isEnabled()
: Returns true
if debug mode is enabled.Debug::log($message)
: Adds a message to error.log
. It takes one parameter, which can be anything.Example: Debug::log('Hello World!');
Notice: Debug::log($message)
calls Debug::isEnabled()
internally. You don’t have to do that manually.