I'm using MVC example from git Simple-volt for testing. I've registred logger as service. In controller I'm calling it
$this->logger->debug('Hi from Index')
Why In log file I'm getting duplicate records?? Tripple checked - I called it only once!
[2017-01-25 14:23:01] [DEBUG] Hi from Index
[2017-01-25 14:23:01] [DEBUG] Hi from Index
Thanks!