logic: Log success of VS path detector instead of printing to console

This commit is contained in:
mlangkabel
2018-09-10 13:01:54 +02:00
parent 9998855527
commit df0b7bc7bb
@@ -95,7 +95,7 @@ FilePath CxxVs10To14HeaderPathDetector::getVsInstallPathUsingRegistry() const
FilePath path(value.toStdWString());
if (path.exists())
{
std::cout << "key worked: " << key.toStdString() << std::endl;
LOG_INFO(L"Found working regestry key for VS install path: " + key.toStdWString());
return path;
}