FIX LOG_ERROR does not exists. Use LOG_ERR.

This commit is contained in:
Laurent Destailleur 2017-03-18 11:48:02 +01:00
parent f0dddae6d1
commit f7e71d1de2
2 changed files with 3 additions and 3 deletions

View File

@ -129,7 +129,7 @@ class Interfaces
if (in_array($modName,$modules)) // $modules = list of modName already loaded if (in_array($modName,$modules)) // $modules = list of modName already loaded
{ {
$langs->load("errors"); $langs->load("errors");
dol_syslog(get_class($this)."::run_triggers action=".$action." ".$langs->trans("ErrorDuplicateTrigger", $newdir."/".$file, $fullpathfiles[$modName]), LOG_ERR); dol_syslog(get_class($this)."::run_triggers action=".$action." ".$langs->trans("ErrorDuplicateTrigger", $newdir."/".$file, $fullpathfiles[$modName]), LOG_WARNING);
continue; continue;
} }
@ -140,7 +140,7 @@ class Interfaces
} }
catch(Exception $e) catch(Exception $e)
{ {
dol_syslog('ko for '.$modName." ".$e->getMessage()."\n", LOG_ERROR); dol_syslog('ko for '.$modName." ".$e->getMessage()."\n", LOG_ERR);
} }
$modules[$i] = $modName; $modules[$i] = $modName;

View File

@ -329,7 +329,7 @@ class Export
$szFilterQuery=" ".$NameField."='".$ValueField."'"; $szFilterQuery=" ".$NameField."='".$ValueField."'";
break; break;
default: default:
dol_syslog("Error we try to forge an sql export request with a condition on a field with type '".$InfoFieldList[0]."' (defined into module descriptor) but this type is unknown/not supported. It looks like a bug into module descriptor.", LOG_ERROR); dol_syslog("Error we try to forge an sql export request with a condition on a field with type '".$InfoFieldList[0]."' (defined into module descriptor) but this type is unknown/not supported. It looks like a bug into module descriptor.", LOG_ERR);
} }
return $szFilterQuery; return $szFilterQuery;