error.log moved into the log directory

SVN:trunk[2437]
This commit is contained in:
Romain Quetiez
2012-11-21 10:19:28 +00:00
parent f089d4282e
commit f196d03f6f
2 changed files with 3 additions and 3 deletions

View File

@@ -4407,12 +4407,12 @@ abstract class MetaModel
if (self::$m_oConfig->GetLogIssue())
{
self::$m_bLogIssue = true;
IssueLog::Enable(APPROOT.'/error.log');
IssueLog::Enable(APPROOT.'log/error.log');
}
self::$m_bLogNotification = self::$m_oConfig->GetLogNotification();
self::$m_bLogWebService = self::$m_oConfig->GetLogWebService();
ToolsLog::Enable(APPROOT.'/tools.log');
ToolsLog::Enable(APPROOT.'log/tools.log');
}
else
{