Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/songlipeng2003/yii2-cloudfoundry-log
https://github.com/songlipeng2003/yii2-cloudfoundry-log
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/songlipeng2003/yii2-cloudfoundry-log
- Owner: songlipeng2003
- Created: 2016-07-20T03:15:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-20T03:51:28.000Z (over 8 years ago)
- Last Synced: 2024-10-18T09:13:53.371Z (3 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Yii2 CloudFoundry Log Target
### config
update config/web.php```
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning']
],
[
'class' => 'songlipeng2003\yii2_cloud_foundry\log\CloudfoundryTarget',
'levels' => ['error']
]
],
],
```