mirror of
https://github.com/actions/runner.git
synced 2025-12-16 23:20:03 +00:00
20 lines
371 B
C#
20 lines
371 B
C#
using System;
|
|
|
|
namespace GitHub.Actions.WorkflowParser.ObjectTemplating
|
|
{
|
|
public interface ITraceWriter
|
|
{
|
|
void Error(
|
|
String format,
|
|
params Object[] args);
|
|
|
|
void Info(
|
|
String format,
|
|
params Object[] args);
|
|
|
|
void Verbose(
|
|
String format,
|
|
params Object[] args);
|
|
}
|
|
}
|