| Current Path : /home/juvelize/martine/tmp/install_61b0f5c54c150/back/helpers/global/ |
| Current File : /home/juvelize/martine/tmp/install_61b0f5c54c150/back/helpers/global/log.php |
<?php
function acym_getLogPath($filename, $create = false)
{
$reportPath = ACYM_LOGS_FOLDER.$filename;
$reportPath = acym_cleanPath(ACYM_ROOT.trim(html_entity_decode($reportPath)));
if ($create) acym_createDir(dirname($reportPath), true, true);
return $reportPath;
}