Exemplo n.º 1
0
 public static void LogCompilerErrors(this IHxlcLogger log, HxlCompilerErrorCollection errors)
 {
     foreach (var e in errors)
     {
         var str = e.ToString();
         if (e.IsWarning)
         {
             log.Warn(str);
         }
         else
         {
             log.Error(str);
         }
     }
 }
Exemplo n.º 2
0
 public static void NoSourceFilesSpecified(this IHxlcLogger log)
 {
     log.Error("No source files specified.");
 }