summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-23 12:01:20 +0200
committerMason Reed <mason@vector35.com>2025-05-23 12:01:30 +0200
commit2cb16dfcffb232d275276cfe0a2e006ef8df91f0 (patch)
treef5d7f576a8bcfc4122d599b5da9f25ef4e59ffa0
parent1431470658095022491505636965660686302574 (diff)
[RTTI] Fix typo in some log calls
-rw-r--r--plugins/rtti/plugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/rtti/plugin.cpp b/plugins/rtti/plugin.cpp
index 2cf4b973..0f45a5b9 100644
--- a/plugins/rtti/plugin.cpp
+++ b/plugins/rtti/plugin.cpp
@@ -29,7 +29,7 @@ void RTTIAnalysis(const Ref<AnalysisContext>& analysisContext)
}
catch (std::exception& e)
{
- LogErrorF("MSVC RTTI Analysis failed with uncaught exception: %s", e.what());
+ LogError("MSVC RTTI Analysis failed with uncaught exception: %s", e.what());
}
}
@@ -41,7 +41,7 @@ void RTTIAnalysis(const Ref<AnalysisContext>& analysisContext)
}
catch (std::exception& e)
{
- LogErrorF("Itanium RTTI Analysis failed with uncaught exception: %s", e.what());
+ LogError("Itanium RTTI Analysis failed with uncaught exception: %s", e.what());
}
}
@@ -60,7 +60,7 @@ void VFTAnalysis(const Ref<AnalysisContext>& analysisContext)
}
catch (std::exception& e)
{
- LogErrorF("MSVC VFT Analysis failed with uncaught exception: %s", e.what());
+ LogError("MSVC VFT Analysis failed with uncaught exception: %s", e.what());
}
try
@@ -71,7 +71,7 @@ void VFTAnalysis(const Ref<AnalysisContext>& analysisContext)
}
catch (std::exception& e)
{
- LogErrorF("Itanium VFT Analysis failed with uncaught exception: %s", e.what());
+ LogError("Itanium VFT Analysis failed with uncaught exception: %s", e.what());
}
}