public void Verbose(ITextViewComponent component)
 {
     if (IsVerbose)
     {
         component.GetLines().ForEach(Console.WriteLine);
     }
 }
 public void Error(ITextViewComponent component)
 => component.GetLines().ForEach(Console.Error.WriteLine);