using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Build.Utilities; namespace CapnpC.CSharp.MsBuild.Generation { public static class LogExtensions { public static void LogWithNameTag( this TaskLoggingHelper loggingHelper, Action<string, object[]> loggingMethod, string message, params object[] messageArgs) { string fullMessage = $"[Cap'n Proto] {message}"; loggingMethod?.Invoke(fullMessage, messageArgs); } } }