Commit ab2ddaca50049059b97a4c3fbed4924f77abfa4c
1 parent
9b996a31
Exists in
master
and in
37 other branches
Remove debug info
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/InputOutput/IHMImpl/Tools/IHMParamManagerClass.php
... | ... | @@ -211,7 +211,7 @@ class IHMParamManagerClass |
211 | 211 | else { |
212 | 212 | $paramPath = IHMConfigClass::getLocalParamDBPath().$paramId.".xml"; |
213 | 213 | if (!file_exists($paramPath)) |
214 | - throw new Exception('Cannot find parameter local file '.$paramId." - ".$paramPath); | |
214 | + throw new Exception('Cannot find parameter local file '.$paramId); | |
215 | 215 | } |
216 | 216 | |
217 | 217 | $paramsData->addParamToCopy($real_param_id,$paramPath); |
... | ... | @@ -239,7 +239,7 @@ class IHMParamManagerClass |
239 | 239 | else { |
240 | 240 | $paramPath = IHMConfigClass::getLocalParamDBPath().$paramId.".xml"; |
241 | 241 | if (empty($paramPath) || !@$doc->load($paramPath)) |
242 | - throw new Exception('Cannot find parameter local file '.$paramId." - ".$paramPath); | |
242 | + throw new Exception('Cannot find parameter local file '.$paramId); | |
243 | 243 | } |
244 | 244 | |
245 | 245 | //<get> |
... | ... |