Move error on function dol_include_once() to LOG_WARNING

This commit is contained in:
Alexandre SPANGARO
2019-02-12 16:34:52 +01:00
parent 26168f0de5
commit b99149b940

View File

@@ -622,7 +622,7 @@ function dol_include_once($relpath, $classname = '')
$fullpath = dol_buildpath($relpath);
if (!file_exists($fullpath)) {
dol_syslog('functions::dol_include_once Tried to load unexisting file: '.$relpath, LOG_ERR);
dol_syslog('functions::dol_include_once Tried to load unexisting file: '.$relpath, LOG_WARNING);
return false;
}