| 108 | | # active: on |
|---|
| 109 | | # level: debug |
|---|
| 110 | | |
|---|
| 111 | | This means that the symfony logging mechanism is active by default in all environments (but can be deactivated). In all environments except the production one, all the messages are logged (up to the least important level - the `debug` level). In production, only the most important messages are logged. You can change the `level` in this file for each environment to limit the type of logged messages. |
|---|
| 112 | | |
|---|
| 113 | | The value of these parameters is accessible during execution through `sfConfig::get('sf_logging_active')` and `sfConfig::get('sf_logging_level')`. |
|---|
| | 108 | # enabled: on |
|---|
| | 109 | # level: debug |
|---|
| | 110 | |
|---|
| | 111 | This means that the symfony logging mechanism is enabled by default in all environments (but can be deactivated). In all environments except the production one, all the messages are logged (up to the least important level - the `debug` level). In production, only the most important messages are logged. You can change the `level` in this file for each environment to limit the type of logged messages. |
|---|
| | 112 | |
|---|
| | 113 | The value of these parameters is accessible during execution through `sfConfig::get('sf_logging_enabled')` and `sfConfig::get('sf_logging_level')`. |
|---|