Skip to content

Commit

Permalink
Turn on logging by default
Browse files Browse the repository at this point in the history
  • Loading branch information
websiteduck committed Dec 30, 2011
1 parent af1623b commit 9fb9da8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/config/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Global Event Logging
* If this is false, the Event class will ignore all events.
*/
\System\Event::$log_events = false;
\System\Event::$log_events = true;

/**
* Show the event log based on some condition. For example:
Expand All @@ -15,11 +15,11 @@
* Show based on variable set in config files:
* if ($debug === true) {
*/
if (false) \System\Event::$display_log = true;
if (true) \System\Event::$display_log = true;

/**
* Database Configuration
* \System\Database::connect(identifier, driver, server, username, password, database);
*/
\System\Database::$log_events = false;
\System\Database::$log_events = true;
\System\Database::connect_dsn('main', 'sqlite:ixt_demo.sqlite');

0 comments on commit 9fb9da8

Please sign in to comment.