mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
12 lines
318 B
PHP
12 lines
318 B
PHP
<?php
|
|
|
|
use SuiteCRM\ErrorMessage;
|
|
|
|
function smarty_function_log($params, &$smarty) {
|
|
$from = $smarty->source->name ?? '';
|
|
$message = "log call at: $from - " . $params['msg'];
|
|
$level = isset($params['level']) ? $params['level'] : ErrorMessage::DEFAULT_LOG_LEVEL;
|
|
ErrorMessage::log($message, $level);
|
|
}
|
|
|