aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-11-05 20:20:08 +0100
committerGitHub <noreply@github.com>2023-11-05 20:20:08 +0100
commit583bae6e1a7e35eec2c5cb4383bc0089f6ee6781 (patch)
treef2d5bab83a5eda7104b01b12b4ba67ac9c4eb7ae
parent2b269d22a4d997ddb4424f84eb1a0953b7dd34fd (diff)
downloadNorthstarLauncher-583bae6e1a7e35eec2c5cb4383bc0089f6ee6781.tar.gz
NorthstarLauncher-583bae6e1a7e35eec2c5cb4383bc0089f6ee6781.zip
Plugin related log error expecting more args (#591)v1.20.0-rc2
The related line expected 3 args but only 2 args are passed. Co-authored-by: cat_or_not <41955154+catornot@users.noreply.github.com>
-rw-r--r--NorthstarDLL/plugins/plugins.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/NorthstarDLL/plugins/plugins.cpp b/NorthstarDLL/plugins/plugins.cpp
index 5e28e12d..18610e2e 100644
--- a/NorthstarDLL/plugins/plugins.cpp
+++ b/NorthstarDLL/plugins/plugins.cpp
@@ -129,7 +129,7 @@ std::optional<Plugin> PluginManager::LoadPlugin(fs::path path, PluginInitFuncs*
if (strcmp(manifestJSON["api_version"].GetString(), std::to_string(ABI_VERSION).c_str()))
{
NS::log::PLUGINSYS->error(
- "'{}' has an incompatible API version number '{}' in its manifest. Current ABI version is '{}'", pathstring, ABI_VERSION);
+ "'{}' has an incompatible API version number in its manifest. Current ABI version is '{}'", pathstring, ABI_VERSION);
return std::nullopt;
}
// Passed all checks, going to actually load it now