diff options
author | Adam Frisby | 2007-07-24 03:59:32 +0000 |
---|---|---|
committer | Adam Frisby | 2007-07-24 03:59:32 +0000 |
commit | 3cbc1e011d8abcfefacc0c72429dd01656f49ef2 (patch) | |
tree | e4674ad62367657780de1d3b5c1743a9ea34ef4b /OpenSim/Framework/Console/LogBase.cs | |
parent | *Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that f... (diff) | |
download | opensim-SC_OLD-3cbc1e011d8abcfefacc0c72429dd01656f49ef2.zip opensim-SC_OLD-3cbc1e011d8abcfefacc0c72429dd01656f49ef2.tar.gz opensim-SC_OLD-3cbc1e011d8abcfefacc0c72429dd01656f49ef2.tar.bz2 opensim-SC_OLD-3cbc1e011d8abcfefacc0c72429dd01656f49ef2.tar.xz |
* Reduced a significant number of compiler warnings (back down to 9 for all projects combined, all 'never used' things)
Diffstat (limited to 'OpenSim/Framework/Console/LogBase.cs')
-rw-r--r-- | OpenSim/Framework/Console/LogBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Console/LogBase.cs b/OpenSim/Framework/Console/LogBase.cs index 60c77fe..f2b2720 100644 --- a/OpenSim/Framework/Console/LogBase.cs +++ b/OpenSim/Framework/Console/LogBase.cs | |||
@@ -344,7 +344,7 @@ namespace OpenSim.Framework.Console | |||
344 | { | 344 | { |
345 | // FIXME: Needs to be better abstracted | 345 | // FIXME: Needs to be better abstracted |
346 | Log.WriteLine(prompt); | 346 | Log.WriteLine(prompt); |
347 | this.Write(prompt); | 347 | this.Notice(prompt); |
348 | ConsoleColor oldfg = System.Console.ForegroundColor; | 348 | ConsoleColor oldfg = System.Console.ForegroundColor; |
349 | System.Console.ForegroundColor = System.Console.BackgroundColor; | 349 | System.Console.ForegroundColor = System.Console.BackgroundColor; |
350 | string temp = System.Console.ReadLine(); | 350 | string temp = System.Console.ReadLine(); |
@@ -355,7 +355,7 @@ namespace OpenSim.Framework.Console | |||
355 | // Displays a command prompt and waits for the user to enter a string, then returns that string | 355 | // Displays a command prompt and waits for the user to enter a string, then returns that string |
356 | public string CmdPrompt(string prompt) | 356 | public string CmdPrompt(string prompt) |
357 | { | 357 | { |
358 | this.Write(String.Format("{0}: ", prompt)); | 358 | this.Notice(String.Format("{0}: ", prompt)); |
359 | return this.ReadLine(); | 359 | return this.ReadLine(); |
360 | } | 360 | } |
361 | 361 | ||