| | | 1 | | namespace WireMock.Logging |
| | | 2 | | { |
| | | 3 | | /// <summary> |
| | | 4 | | /// WireMockNullLogger which does not log. |
| | | 5 | | /// </summary> |
| | | 6 | | /// <seealso cref="IWireMockLogger" /> |
| | | 7 | | public class WireMockNullLogger : IWireMockLogger |
| | | 8 | | { |
| | | 9 | | /// <see cref="IWireMockLogger.Debug"/> |
| | | 10 | | public void Debug(string formatString, params object[] args) |
| | 47 | 11 | | { |
| | 47 | 12 | | } |
| | | 13 | | |
| | | 14 | | /// <see cref="IWireMockLogger.Info"/> |
| | | 15 | | public void Info(string formatString, params object[] args) |
| | 2 | 16 | | { |
| | 2 | 17 | | } |
| | | 18 | | |
| | | 19 | | /// <see cref="IWireMockLogger.Warn"/> |
| | | 20 | | public void Warn(string formatString, params object[] args) |
| | 12 | 21 | | { |
| | 12 | 22 | | } |
| | | 23 | | |
| | | 24 | | /// <see cref="IWireMockLogger.Error"/> |
| | | 25 | | public void Error(string formatString, params object[] args) |
| | 0 | 26 | | { |
| | 0 | 27 | | } |
| | | 28 | | } |
| | | 29 | | } |