mirror of
https://github.com/actions/runner.git
synced 2025-12-14 13:43:33 +00:00
GitHub Actions Runner
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user