mirror of
https://github.com/github/codeql.git
synced 2026-04-08 00:24:03 +02:00
12 lines
238 B
C#
12 lines
238 B
C#
using Semmle.Util.Logging;
|
|
|
|
namespace Semmle.Extraction.Tests
|
|
{
|
|
internal class LoggerStub : ILogger
|
|
{
|
|
public void Log(Severity severity, string message, int? threadId = null) { }
|
|
|
|
public void Dispose() { }
|
|
}
|
|
}
|