mirror of
https://github.com/github/codeql.git
synced 2026-03-01 05:13:41 +01:00
12 lines
216 B
C#
12 lines
216 B
C#
using Semmle.Util.Logging;
|
|
|
|
namespace Semmle.Extraction.Tests
|
|
{
|
|
internal class LoggerStub : ILogger
|
|
{
|
|
public void Log(Severity severity, string message) { }
|
|
|
|
public void Dispose() { }
|
|
}
|
|
}
|