ILog interface now declares its debug method

@WhiteXZ must have forgot this?
This commit is contained in:
Lucas Nicodemus 2015-02-28 18:56:48 -07:00
parent 7d803ac2b1
commit 008de9b28c

View file

@ -132,6 +132,19 @@ namespace TShockAPI
/// <param name="level">LogLevel assosciated with the message</param>
void Write(string message, LogLevel level);
/// <summary>
/// Writes a debug string to the log file.
/// </summary>
/// <param name="message">The message to be written.</param>
void Debug(String message);
/// <summary>
/// Writes a debug string to the log file.
/// </summary>
/// <param name="format">The format of the message to be written.</param>
/// <param name="args">The format arguments.</param>
void Debug(string format, params object[] args);
/// <summary>
/// Dispose the Log
/// </summary>