Skip to content

Commit f883d01

Browse files
[lldb][Windows] convert HEALTH log to a VERBOSE log when failing to load swift-plugin-driver
1 parent 2a5645a commit f883d01

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1284,8 +1284,9 @@ static bool DeserializeAllCompilerFlags(swift::CompilerInvocation &invocation,
12841284
if (server.empty())
12851285
server = fallback();
12861286
if (server.empty()) {
1287-
HEALTH_LOG_PRINTF("Could not find swift-plugin-server for %s",
1288-
plugin.str().c_str());
1287+
LOG_VERBOSE_PRINTF(GetLog(LLDBLog::Types),
1288+
"Could not find swift-plugin-server for %s",
1289+
plugin.str().c_str());
12891290
return std::string();
12901291
}
12911292
if (!FileSystem::Instance().Exists(server)) {

0 commit comments

Comments
 (0)