mirror of
https://github.com/actions/runner.git
synced 2025-12-26 11:28:00 +08:00
13 lines
266 B
C#
13 lines
266 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace GitHub.DistributedTask.Expressions2
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface ITraceWriter
|
|
{
|
|
void Info(String message);
|
|
void Verbose(String message);
|
|
}
|
|
}
|