Browse Source

FIX LOG_ERROR does not exists. Use LOG_ERR.

Laurent Destailleur 8 years ago
parent
commit
f7e71d1de2
2 changed files with 3 additions and 3 deletions
  1. 2 2
      htdocs/core/class/interfaces.class.php
  2. 1 1
      htdocs/exports/class/export.class.php

+ 2 - 2
htdocs/core/class/interfaces.class.php

@@ -129,7 +129,7 @@ class Interfaces
                         if (in_array($modName,$modules))    // $modules = list of modName already loaded
                         {
                             $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;
                         }
                         
@@ -140,7 +140,7 @@ class Interfaces
                         }
                         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;

+ 1 - 1
htdocs/exports/class/export.class.php

@@ -329,7 +329,7 @@ class Export
 					$szFilterQuery=" ".$NameField."='".$ValueField."'";
 				break;
 			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;