shahroq / whale_c5_cheat_sheet

concrete5 Cheat Sheet
MIT License
70 stars 33 forks source link

Logging to a new channel #21

Closed dbuonomo closed 4 years ago

dbuonomo commented 4 years ago

Logging to a new channel. This works for any of the levels - e.g. addNotice, addAlert, etc.

use Concrete\Core\Logging\LoggerFactory;

$logger = $this->app->make(LoggerFactory::class)->createLogger('your_new_channel'); $logger->addNotice('A notice level log message.'); $logger->addInfo('A info level log message.');

shahroq commented 4 years ago

ThanX. I added an entry for this.