Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
b79f3821
Commit
b79f3821
authored
Dec 15, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started docs about logger
parent
d3a450f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
83 additions
and
2 deletions
+83
-2
logging.md
docs/guide/logging.md
+83
-2
No files found.
docs/guide/logging.md
View file @
b79f3821
Logging
Logging
=======
=======
Yii provides flexible and extensible logger that is able to handle messages according to serverity level or their type.
You may filter messages by multiple criteria and forward them to files, email, debugger etc.
Logging basics
--------------
Basic logging is as simple as calling one method:
```
php
\Yii
::
info
(
'Hello, I am a test log message'
);
```
### Message category
Additionally to the message itself message category could be specified in order to allow filtering such messages and
handing these differently. Message category is passed as a second argument of logging methods and is
`application`
by
default.
### Severity levels
There are multiple severity levels and corresponding methods available:
-
`\Yii::trace`
used maily for development purpose to indicate workflow of some code. Note that it only works in
development mode when
`YII_DEBUG`
is set to
`true`
.
-
`\Yii::error`
used when there's unrecoverable error.
-
`\Yii::warning`
used when an error occured but execution can be continued.
-
`\Yii::info`
used to keep record of important events such as administrator logins.
Log targets
-----------
When one of the logging methods is called, message is passed to
`\yii\log\Logger`
component also accessible as
`Yii::$app->log`
. Logger accumulates messages in memory and then when there are enough messages or when current
request finishes, sends them to different log targets, such as file or email.
You may configure the targets in application configuration, like the following:
```
php
[
'components'
=>
[
'log'
=>
[
'targets'
=>
[
'file'
=>
[
'class'
=>
'yii\log\FileTarget'
,
'levels'
=>
[
'trace'
,
'info'
],
'categories'
=>
[
'yii\*'
],
],
'email'
=>
[
'class'
=>
'yii\log\EmailTarget'
,
'levels'
=>
[
'error'
,
'warning'
],
'emails'
=>
[
'admin@example.com'
],
],
],
],
],
]
```
In the config above we are defining two log targets: file and email. In both cases we are filtering messages handles by
these targets by severity. In case of file target we're additionally filter by category.
`yii\*`
means all categories
starting with
`yii\`.
Each log target can have a name and can be referenced via the [[targets]] property as follows:
```php
Yii::$app->log->targets['file']->enabled = false;
``
`
When the application ends or
[
[flushInterval
]
] is reached, Logger will call
[
[flush()
]
] to send logged messages to
different log targets, such as file, email, Web.
Configuring context information
-------------------------------
Profiling
---------
TBD
-
[
[Yii::beginProfile()
]
]
-
[
[Yii::endProfile()
]
]
TDB
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment