Skip to content

Commit

Permalink
Avoid using assembly FullName.
Browse files Browse the repository at this point in the history
  • Loading branch information
CptMoore committed Jul 6, 2024
1 parent 17114d0 commit 81d8a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ModTek/Util/AssemblyUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ internal static MethodInfo[] FindMethods(Assembly assembly, string methodName, s
catch (Exception e)
{
var typeString = typeName == null ? "in" : $"in type {typeName} of";
Log.Main.Warning?.Log($"Can't find method(s) {methodName} {typeString} assembly {assembly.FullName}", e);
Log.Main.Warning?.Log($"Can't find method(s) {methodName} {typeString} assembly {assembly.CodeBase}", e);
return null;
}
}
Expand Down

0 comments on commit 81d8a13

Please sign in to comment.