Skip to content

Commit

Permalink
Merge pull request #10558 from aspangaro/10.0_dol_include_once_WARNING
Browse files Browse the repository at this point in the history
Move error on function dol_include_once() to LOG_WARNING
  • Loading branch information
eldy committed Feb 12, 2019
2 parents 2fdd929 + b99149b commit afc61d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/lib/functions.lib.php
Expand Up @@ -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;
}

Expand Down

0 comments on commit afc61d8

Please sign in to comment.