You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve SelfLog when a configuration method is not found
List candidate methods only if there are any. Discovered this weird log while working on #353:
> Unable to find a method called WithThreadName. Candidate methods are:
SelfLog.WriteLine($"Unable to find a method called {name}. Candidate methods are:{Environment.NewLine}{string.Join(Environment.NewLine,candidateMethods)}");
473
+
{
474
+
SelfLog.WriteLine($"Unable to find a method called {name}.");
0 commit comments