mirror of
https://github.com/actions/runner.git
synced 2025-12-13 19:03:44 +00:00
9 lines
154 B
C#
9 lines
154 B
C#
namespace GitHub.Runner.Sdk
|
|
{
|
|
public interface ITraceWriter
|
|
{
|
|
void Info(string message);
|
|
void Verbose(string message);
|
|
}
|
|
}
|