Hello EspoCRM developers,
I am totaly new to the EspoCRM source code and PHP in general. I managed to configure a custom workflow action ( As I can see it in the workflow editor).
I added a log statement similar to one that I found in the code
class AppProject extends \Espo\Core\Templates\Services\BasePlus { public function appCreateAction($workflowId, Entity $entity, $additionalParameters = null) { $GLOBALS['log']->info('hello world'); } } I do not see this in the log file data/logs/espo-....log I set the log level to DEBUG in the config.php but there a no log entries except [2018-11-16 10:24:01] Espo.DEBUG: BPM: processPendingFlows [] [] I would expect much more debug output. Am I missing something ? Any help appreceated. Dirk
I am totaly new to the EspoCRM source code and PHP in general. I managed to configure a custom workflow action ( As I can see it in the workflow editor).
I added a log statement similar to one that I found in the code
class AppProject extends \Espo\Core\Templates\Services\BasePlus { public function appCreateAction($workflowId, Entity $entity, $additionalParameters = null) { $GLOBALS['log']->info('hello world'); } } I do not see this in the log file data/logs/espo-....log I set the log level to DEBUG in the config.php but there a no log entries except [2018-11-16 10:24:01] Espo.DEBUG: BPM: processPendingFlows [] [] I would expect much more debug output. Am I missing something ? Any help appreceated. Dirk
Comment