I need help. I am using Monolog logger.
use Monolog\Logger;
$logger = new Logger('app');
$logger->pushHandler(new StreamHandler(\dirname(__DIR__, 2) . '\\var/log/dev.log', Logger::DEBUG));
$logger->pushHandler(new FirePHPHandler());
$logger->info('My logger is now ready');
The problem is that the log is written to the file, but it is not visible in the Symfony profile.
what needs to be done so that the logs are displayed in the Symfony profile??