mirror of
https://github.com/actions/runner.git
synced 2025-12-13 19:03:44 +00:00
28 lines
539 B
C#
28 lines
539 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace GitHub.DistributedTask.ObjectTemplating
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public class EmptyTraceWriter : ITraceWriter
|
|
{
|
|
public void Error(
|
|
String format,
|
|
params Object[] args)
|
|
{
|
|
}
|
|
|
|
public void Info(
|
|
String format,
|
|
params Object[] args)
|
|
{
|
|
}
|
|
|
|
public void Verbose(
|
|
String format,
|
|
params Object[] args)
|
|
{
|
|
}
|
|
}
|
|
}
|