Only 193 warnings to go!

This commit is contained in:
Adam Frisby
2007-05-12 15:19:03 +00:00
parent 06ffeb22d9
commit fd84968d05
7 changed files with 39 additions and 34 deletions

View File

@@ -3,19 +3,19 @@ using System.IO;
namespace OpenSim.Framework.Console
{
public enum LogPriority : int
{
CRITICAL,
HIGH,
MEDIUM,
NORMAL,
LOW,
VERBOSE,
EXTRAVERBOSE
}
public class ConsoleBase
{
public enum LogPriority : int
{
CRITICAL,
HIGH,
MEDIUM,
NORMAL,
LOW,
VERBOSE,
EXTRAVERBOSE
}
StreamWriter Log;
public conscmd_callback cmdparser;
public string componentname;
@@ -142,7 +142,7 @@ namespace OpenSim.Framework.Console
}
else
{
this.WriteLine("Valid options are " + OptionA + " or " + OptionB);
this.WriteLine(LogPriority.MEDIUM,"Valid options are " + OptionA + " or " + OptionB);
temp = CmdPrompt(prompt, defaultresponse);
}
}