From bd7a5b2f1caca5edc46a31ce775b9ac2f36c4391 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 16 Jan 2019 15:00:27 +0000 Subject: [PATCH] Quieten debug log for import reconstruction (excessive entries). --- .gitignore | 1 + CAPE/Scylla/ApiReader.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 4a48ed0..a4b9688 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ Release tests/logging-test.* *.suo *.opendb +.vs/* diff --git a/CAPE/Scylla/ApiReader.cpp b/CAPE/Scylla/ApiReader.cpp index 415aa58..d48824f 100644 --- a/CAPE/Scylla/ApiReader.cpp +++ b/CAPE/Scylla/ApiReader.cpp @@ -527,7 +527,9 @@ bool ApiReader::isModuleLoadedInOwnProcess(ModuleInfo * module) return true; } } +#ifdef DEBUG_COMMENTS DoOutputDebugString("isModuleLoadedInOwnProcess returned false: %s\n",module->fullPath); +#endif return false; }