diff --git a/TShockAPI/ILog.cs b/TShockAPI/ILog.cs index 6ef0e29e..a719146e 100644 --- a/TShockAPI/ILog.cs +++ b/TShockAPI/ILog.cs @@ -32,14 +32,14 @@ namespace TShockAPI All = 31 } - /// - /// Logging interface - /// +/// +/// Logging interface +/// public interface ILog { - /// - /// Log name - /// + /// + /// Log name + /// string Name { get; } /// @@ -52,19 +52,21 @@ namespace TShockAPI /// Writes an informative string to the log and to the console. /// /// The message to be written. - void ConsoleInfo(string message); + void ConsoleInfo(string message); + /// /// Writes an informative string to the log and to the console. /// /// The format of the message to be written. /// The format arguments. - void ConsoleInfo(string format, params object[] args); + void ConsoleInfo(string format, params object[] args); /// /// Writes an error message to the log and to the console. /// /// The message to be written. void ConsoleError(string message); + /// /// Writes an error message to the log and to the console. /// @@ -77,6 +79,7 @@ namespace TShockAPI /// /// The message to be written. void Warn(string message); + /// /// Writes a warning to the log. /// @@ -101,6 +104,7 @@ namespace TShockAPI /// /// The message to be written. void Info(string message); + /// /// Writes an informative string to the log. /// @@ -113,6 +117,7 @@ namespace TShockAPI /// /// The message to be written. void Data(string message); + /// /// Writes data to the log. /// @@ -120,11 +125,11 @@ namespace TShockAPI /// The format arguments. void Data(string format, params object[] args); - /// - /// Writes a message to the log - /// - /// Message to write - /// LogLevel assosciated with the message + /// + /// Writes a message to the log + /// + /// Message to write + /// LogLevel assosciated with the message void Write(string message, LogLevel level); ///