muffin v7.5.4
This commit is contained in:
parent
40d48d62b0
commit
a8f2c1df37
14 changed files with 1093 additions and 957 deletions
|
|
@ -65,9 +65,7 @@ internal sealed class TaskCreator
|
|||
string text = x.GetType().FullName ?? x.GetType().Name;
|
||||
if (text.Contains('.', StringComparison.Ordinal))
|
||||
{
|
||||
string text2 = text;
|
||||
int num3 = text.LastIndexOf('.') + 1;
|
||||
text = text2.Substring(num3, text2.Length - num3);
|
||||
text = text.Substring(text.LastIndexOf('.') + 1);
|
||||
}
|
||||
_logger.LogTrace("Factory {FactoryName} created Task {TaskNames}", text, string.Join(", ", list4.Select((ITask y) => y.ToString())));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue