From bc4c774b08fc21729ea715d91befeb32132107c8 Mon Sep 17 00:00:00 2001 From: Brian Ferguson Date: Mon, 19 Nov 2012 12:20:19 -0700 Subject: [PATCH] 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:"). --- Plugins/PluginWebParser/WebParser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/PluginWebParser/WebParser.cpp b/Plugins/PluginWebParser/WebParser.cpp index 8d860b88..84b5cc6c 100644 --- a/Plugins/PluginWebParser/WebParser.cpp +++ b/Plugins/PluginWebParser/WebParser.cpp @@ -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()); } }