From df0b7bc7bbcc3ce12e4a87c10094fde597f834f5 Mon Sep 17 00:00:00 2001 From: mlangkabel Date: Mon, 10 Sep 2018 13:01:54 +0200 Subject: [PATCH] logic: Log success of VS path detector instead of printing to console --- .../path_detector/cxx_header/CxxVs10To14HeaderPathDetector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_gui/utility/path_detector/cxx_header/CxxVs10To14HeaderPathDetector.cpp b/src/lib_gui/utility/path_detector/cxx_header/CxxVs10To14HeaderPathDetector.cpp index e690d3e8..f66273b6 100644 --- a/src/lib_gui/utility/path_detector/cxx_header/CxxVs10To14HeaderPathDetector.cpp +++ b/src/lib_gui/utility/path_detector/cxx_header/CxxVs10To14HeaderPathDetector.cpp @@ -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; }