Tried to implement Monolog into a CodeIgniter 3 base installation, and implemented as per the instructions here: https://github.com/stevethomas/codeigniter-monolog, but for some reason CI 3 does not replace the built-in system CI_Log library. I have done the following:
- Installed Monolog via Composer.
- Copied monolog.php and Log.php as per instructions to config and libraries respectively.
- Added the Composer autoload instruction to my CI index.php file; the autoloader is being called, but the library is not initialized.
Expected result: Use Monolog instead of native CI logging. Result observed: CI used built in CI logging.
What am I missing?