How to log context information to logger (session id, user, ...)

2 0
5
Viewed: 29 545 times
Version: 1.1
Category: Tutorials
Written by: olafure olafure
Updated by: ajsharma ajsharma
Created: Jun 5, 2009
Updated: 14 years ago

Logging context information (session, user, ...) to the logfile can be of great help tracking down problems with specific users.

This requires Yii 1.0.6

config/main.php

<?php
return array(
    // ... 
    'preload'=>array('log', 'session'),

    // ...
    'components'=>array(
        // ... 
        'log'=>array(
        'class'=>'CLogRouter',
        'routes'=>array(
            array(
                'class'=>'CWebLogRoute',
                'levels'=>'trace,info,error,warning',
                'filter' => array(
                    'class' => 'CLogFilter',
                    'prefixSession' => true,
                    'prefixUser' => false,
                    'logUser' => false,
                    'logVars' => array(),
                ),
            ),
        ),

You could also extend [CLogFilter] to do your own log message decoration.

Links ΒΆ

Russian Version