Changeset 7850
- Timestamp:
- 03/13/08 00:24:59 (7 months ago)
- Files:
-
- branches/1.0/data/config/settings.yml (modified) (1 diff)
- branches/1.0/data/skeleton/app/app/config/settings.yml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/data/config/settings.yml
r3493 r7850 52 52 # Logging and debugging settings 53 53 web_debug: off # Enable the web debug toolbar 54 error_reporting: 341# Determines which events are logged. The default value is E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR = 34154 error_reporting: <?php echo (E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR)."\n" ?> # Determines which events are logged. The default value is E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR = 341 55 55 56 56 # Assets paths branches/1.0/data/skeleton/app/app/config/settings.yml
r7071 r7850 5 5 dev: 6 6 .settings: 7 # E_ALL | E_STRICT = 4095 8 error_reporting: 4095 7 error_reporting: <?php echo (E_ALL | E_STRICT)."\n" ?> 9 8 web_debug: on 10 9 cache: off … … 14 13 test: 15 14 .settings: 16 # E_ALL | E_STRICT & ~E_NOTICE = 2047 17 error_reporting: 2047 15 error_reporting: <?php echo (E_ALL | E_STRICT & ~E_NOTICE)."\n" ?> 18 16 cache: off 19 17 web_debug: off … … 75 73 # # Logging and debugging settings 76 74 # web_debug: off # Enable the web debug toolbar 77 # error_reporting: 341# Determines which events are logged. The default value is E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR = 34175 # error_reporting: <?php echo (E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR)."\n" ?> # Determines which events are logged. The default value is E_PARSE | E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR | E_USER_ERROR = 341 78 76 # 79 77 # # Assets paths