Skip to content

Commit

Permalink
repos: reword missing testing API warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Aireil authored Oct 13, 2024
1 parent 4225f32 commit 36c1da7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dalamud/Plugin/Internal/Types/PluginRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private bool IsValidManifest(RemotePluginManifest manifest)
manifest.TestingAssemblyVersion > manifest.AssemblyVersion &&
manifest.TestingDalamudApiLevel == null)
{
Log.Warning("Plugin {PluginName} in {RepoLink} has a testing version, but no testing API associated with it, \"TestingDalamudApiLevel\" is required.", manifest.InternalName, this.PluginMasterUrl);
Log.Warning("The plugin {PluginName} in {RepoLink} has a testing version available, but it lacks an associated testing API. The 'TestingDalamudApiLevel' property is required.", manifest.InternalName, this.PluginMasterUrl);
}

return true;
Expand Down

0 comments on commit 36c1da7

Please sign in to comment.