示例#1
0
 public override void WriteError(string text, string details = null)
 {
     _githubActions.WriteError(text);
     if (details != null)
     {
         _githubActions.WriteError(details);
     }
 }
示例#2
0
 protected override void ReportError(string text, string details = null)
 {
     _githubActions.WriteError(text);
     if (details != null)
     {
         base.WriteError(details);
     }
 }