From 1d824df3bf2fab7a7e91a72aa0628c54638a8b45 Mon Sep 17 00:00:00 2001 From: Kevin Leung Date: Tue, 29 Dec 2015 11:13:13 +0800 Subject: [PATCH] Let the compiler generate the pos info --- mcli/Dispatch.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mcli/Dispatch.hx b/mcli/Dispatch.hx index 9f8d540..b210b3b 100644 --- a/mcli/Dispatch.hx +++ b/mcli/Dispatch.hx @@ -313,7 +313,7 @@ using Lambda; #if sys Sys.stderr().writeString(s + "\n"); #else - haxe.Log.trace(s,null); + haxe.Log.trace(s); #end } @@ -322,7 +322,7 @@ using Lambda; #if sys Sys.println(s); #else - haxe.Log.trace(s,null); + haxe.Log.trace(s); #end }