Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeuchler committed Dec 3, 2021
2 parents 1aad526 + 42e854d commit fb64d1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.10.0
5.10.1
2 changes: 1 addition & 1 deletion src/Moryx.AbstractionLayer/Resources/Resource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public abstract class Resource : ILoggingComponent, IResource, IInitializablePlu
/// <inheritdoc />
void IInitializable.Initialize()
{
var loggerName = Name.Replace(".", "_"); // replace . with _ because of logger child structure
var loggerName = Name?.Replace(".", "_"); // replace . with _ because of logger child structure
Logger = Logger?.GetChild(loggerName, GetType());
OnInitialize();
}
Expand Down

0 comments on commit fb64d1b

Please sign in to comment.