Frequently Asked Questions
Self-Help Troubleshooting
Last Updated 5 years ago
As default settings, DbFace works on a production environment, that means, we disable all warning logs, but this might be an issue for you to see how DbFace works.
Follow the steps below to enable debug log
Follow the steps below to enable debug log
- Open config/hooks.php and find _hook_fc_start_ function
define('ENVIRONMENT', 'production');To
define('ENVIRONMENT', 'development');
- Add the following entry into config/config.inc.php
// | 0 = Disables logging, Error logging TURNED OFFYou will see all logs in application/logs directory now.
//| 1 = Error Messages (including PHP errors)
// | 2 = Debug Messages
// | 3 = Informational Messages
// | 4 = All Messages
$config['log_threshold'] = 4;