From ec4eb484abbe97ddb255585f169db48add81e95c Mon Sep 17 00:00:00 2001 From: MyvarHD Date: Sat, 27 Dec 2014 22:47:49 +0200 Subject: [PATCH] Added time took message --- source/Cosmos.Build.MSBuild/IL2CPU.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Cosmos.Build.MSBuild/IL2CPU.cs b/source/Cosmos.Build.MSBuild/IL2CPU.cs index b947bab30..f8411c321 100644 --- a/source/Cosmos.Build.MSBuild/IL2CPU.cs +++ b/source/Cosmos.Build.MSBuild/IL2CPU.cs @@ -193,6 +193,8 @@ namespace Cosmos.Build.MSBuild { string.Format("IL2CPU invoked with DebugMode='{0}', DebugEnabled='{1}', TraceAssemblies='{2}', IgnoreDebugStub='{3}'", DebugMode, DebugEnabled, TraceAssemblies ?? "{NULL}", IgnoreDebugStubAttribute )); + + Log.LogMessage(MessageImportance.High, "IL2CPU task took {0}", xSW.Elapsed); } } }