mirror of
https://github.com/actions/runner.git
synced 2025-12-12 05:37:01 +00:00
15 lines
301 B
C#
15 lines
301 B
C#
using System;
|
|
|
|
namespace GitHub.Actions.WorkflowParser.Conversion
|
|
{
|
|
internal sealed class EmptyServerTraceWriter : IServerTraceWriter
|
|
{
|
|
public void TraceAlways(
|
|
Int32 tracepoint,
|
|
String format,
|
|
params Object[] arguments)
|
|
{
|
|
}
|
|
}
|
|
}
|