diff --git a/src/core/Akka/Actor/ActorRef.cs b/src/core/Akka/Actor/ActorRef.cs index f55b6f0e82c..6eb6d35c190 100644 --- a/src/core/Akka/Actor/ActorRef.cs +++ b/src/core/Akka/Actor/ActorRef.cs @@ -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); } } @@ -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); } }