Changed WebParser's Debug=2 option to write to the current directory (same as the .ini file calling it) because Windows 8 does not allow writing to the root folder ("C:").

This commit is contained in:
Brian Ferguson 2012-11-19 12:20:19 -07:00
parent 4ecb65bd15
commit bc4c774b08

View File

@ -604,8 +604,8 @@ PLUGIN_EXPORT void Reload(void* data, void* rm, double* maxValue)
}
if (measure->debug == 2)
{
measure->debugFileLocation = RmReadPath(rm, L"Debug2File", L"C:\\WebParserDump.txt");
{
measure->debugFileLocation = RmReadPath(rm, L"Debug2File", L"WebParserDump.txt");
Log(LOG_DEBUG, measure->debugFileLocation.c_str());
}
}