Skip to content
Snippets Groups Projects
Commit 55e32bb1 authored by Henri Queneau's avatar Henri Queneau
Browse files

FEAT #4554 add path for fonctionnel and technical in log4php in custom

parent 11cfdcc4
No related branches found
No related tags found
No related merge requests found
......@@ -897,6 +897,11 @@ class Install extends functions
exit;
}
if (!$this->setLog4php()) {
return false;
exit;
}
return true;
}
......@@ -1034,8 +1039,16 @@ class Install extends functions
}
private function setLog4php(){
$xmlconfig = simplexml_load_file('apps/maarch_entreprise/xml/log4php.default.xml');
$LOG4PHP = $xmlconfig->log4php;
$appender = $xmlconfig->appender;
$param = $appender->param;
$appender->param['value'] = realpath('.').'/fonctionnel.log';
$appender = $xmlconfig->appender[1];
$param = $appender->param;
$appender->param['value'] = realpath('.').'/technique.log';
$res = $xmlconfig->asXML();
$fp = @fopen(realpath('.')."/custom/cs_".$_SESSION['config']['databasename']."/apps/maarch_entreprise/xml/log4php.xml", "w+");
if (!$fp) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment