DEBUG preprocessor conditional inside method

This commit is contained in:
White 2015-04-09 15:56:51 +09:30
parent c0f28f4aaf
commit b4f2ddef47
5 changed files with 11 additions and 15 deletions

View file

@ -205,14 +205,15 @@ namespace TShockAPI
ConsoleInfo(string.Format(format, args));
}
#if DEBUG
/// <summary>
/// Writes a debug string to the log file.
/// </summary>
/// <param name="message">The message to be written.</param>
public void Debug(string message)
{
Write(message, TraceLevel.Verbose);
#if DEBUG
Write(message, TraceLevel.Verbose);\
#endif
}
/// <summary>
@ -222,9 +223,10 @@ namespace TShockAPI
/// <param name="args">The format arguments.</param>
public void Debug(string format, params object[] args)
{
#if DEBUG
Debug(string.Format(format, args));
}
#endif
}
public void Write(string message, TraceLevel level)
{