Add log separator in log files

Is it possibe to add log separators between log contents in Yii’s log files?


2017/06/23 10:38:53 [info] [sysetm.*] info

in ...\protected\controllers\SiteController.php (7)

in ...\index.php (15)

2017/06/23 10:38:53 [warning] [sysetm.*] warning

in ...\protected\controllers\SiteController.php (<img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />

in ...\index.php (15)

2017/06/23 10:38:53 [error] [sysetm.*] error

in ...\protected\controllers\SiteController.php (9)

in ...\index.php (15)

For example, I’m trying to add separtor between logs like following:


2017/06/23 10:38:53 [info] [sysetm.*] info

in ...\protected\controllers\SiteController.php (7)

in ...\index.php (15)

---

2017/06/23 10:38:53 [warning] [sysetm.*] warning

in ...\protected\controllers\SiteController.php (<img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />

in ...\index.php (15)

---

2017/06/23 10:38:53 [error] [sysetm.*] error

in ...\protected\controllers\SiteController.php (9)

in ...\index.php (15)

---