mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01: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() { }
|
|
}
|
|
}
|