Skip to content

Commit

Permalink
fix error log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhumbert committed Jun 23, 2023
1 parent 9643848 commit 30407bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/red4ext/ModSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void __fastcall ModSettings::ProcessScriptData(ScriptData *scriptData) {
modClass.UpdateDefault(variable.name, variable.runtimeVar->GetValuePtr());
sdk->logger->InfoF(pluginHandle, "Loaded %s.%s", modClass.name.ToString(), variable.name.ToString());
} else {
sdk->logger->ErrorF(pluginHandle, "Could not find runtime variable for {}", prop->type->name.ToString());
sdk->logger->ErrorF(pluginHandle, "Could not find runtime variable for %s", prop->type->name.ToString());
}
}
}
Expand Down

0 comments on commit 30407bd

Please sign in to comment.