From 2d105f9ccb2493fff21d3a7b293cb5a546e9779d Mon Sep 17 00:00:00 2001 From: sebas77 Date: Fri, 27 Oct 2017 11:02:25 +0100 Subject: [PATCH] improve error report --- ECS/EntityDescriptor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ECS/EntityDescriptor.cs b/ECS/EntityDescriptor.cs index 2cfd757..b82e01c 100644 --- a/ECS/EntityDescriptor.cs +++ b/ECS/EntityDescriptor.cs @@ -34,7 +34,7 @@ namespace Svelto.ECS var implementor = implementors[index]; if (implementor == null) Utility.Console.LogWarning( - "Null implementor, are you using a wild GetComponents to fetch it?"); + "Null implementor, are you using a wild GetComponents to fetch it? ").FastConcat(ToString())); else { if (implementor is IRemoveEntityComponent)