Commit acc7504d482d5e1c9d8dd00958a7d2f1f6b0ae00

Authored by Benjamin Renard
1 parent 04949394

Revert some unexpected commit

config/kernel/log4cxx.config
1   -log4j.rootLogger=debug, stdout
  1 +log4j.rootLogger=error, stdout
2 2  
3 3 log4j.appender.stdout=org.apache.log4j.ConsoleAppender
4 4 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
... ...
src/Request/ProcessRequestImpl/Process/ProcessClass.php
... ... @@ -279,8 +279,8 @@ class ProcessClass
279 279 if (!chdir($this->runningPath))
280 280 return false;
281 281  
282   - //if (!$keep_log && file_exists($this->outputFile))
283   - // unlink($this->outputFile);
  282 + if (!$keep_log && file_exists($this->outputFile))
  283 + unlink($this->outputFile);
284 284  
285 285 if (file_exists($this->exitCodeFile))
286 286 unlink($this->exitCodeFile);
... ...