We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0870914 commit a5dc403Copy full SHA for a5dc403
1 file changed
Code/Helpers/FrameworkBridge.cs
@@ -32,8 +32,8 @@ public string StopAndGetLoadedFrameworksMessage()
32
{
33
Timing.KillCoroutines(_handles.ToArray());
34
_handles.Clear();
35
- if (_found.Count == 0) return "No supported framework was found, no additional methods will be loaded.";
36
- return $"SER has found {_found.Count} supported framework(s): " +
+ if (_found.Count == 0) return "No supported framework was found, no additional methods were added.";
+ return $"SER has added methods for {_found.Count} supported framework(s): " +
37
$"{_found.Select(f => f.Type.ToString()).JoinStrings(", ")}";
38
}
39
0 commit comments