diff --git a/TShockAPI/ILog.cs b/TShockAPI/ILog.cs
index a719146e..a8c65eaf 100644
--- a/TShockAPI/ILog.cs
+++ b/TShockAPI/ILog.cs
@@ -53,7 +53,7 @@ namespace TShockAPI
///
/// The message to be written.
void ConsoleInfo(string message);
-
+
///
/// Writes an informative string to the log and to the console.
///
@@ -132,6 +132,19 @@ namespace TShockAPI
/// LogLevel assosciated with the message
void Write(string message, LogLevel level);
+ ///
+ /// Writes a debug string to the log file.
+ ///
+ /// The message to be written.
+ void Debug(String message);
+
+ ///
+ /// Writes a debug string to the log file.
+ ///
+ /// The format of the message to be written.
+ /// The format arguments.
+ void Debug(string format, params object[] args);
+
///
/// Dispose the Log
///