Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/core/Akka/Actor/ActorRef.cs
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ public void RemoveChild(string name)
IInternalActorRef tmp;
if (!_children.TryRemove(name, out tmp))
{
Log.Warning("{0} trying to remove non-child {1}", Path, name);
Log.Debug("{0} trying to remove non-child {1}", Path, name);
}
}

Expand All @@ -893,7 +893,7 @@ public void RemoveChild(string name, IActorRef child)
IInternalActorRef tmp;
if (!_children.TryRemove(name, out tmp))
{
Log.Warning("{0} trying to remove non-child {1}", Path, name);
Log.Debug("{0} trying to remove non-child {1}", Path, name);
}
}

Expand Down
Loading