mirror of
https://github.com/actions/runner.git
synced 2025-12-17 07:54:19 +00:00
Compare updated template evaluator (#4092)
This commit is contained in:
19
src/Sdk/WorkflowParser/ObjectTemplating/ITraceWriter.cs
Normal file
19
src/Sdk/WorkflowParser/ObjectTemplating/ITraceWriter.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user