Documentation
Log Levels
By default, projects on Servd only listen for "error" and "warning" logs. If you want to change that to include other log levels, such as "info" and "debug", edit your config/app.php to include the following snippet:
Craft 4+ #
<?php
return [
// Drop this bit below your existing app.php config 👇
'components' => [
'log' => [
'monologTargetConfig' => [
'level' => Psr\Log\LogLevel::INFO
]
]
]
];