diff options
author | Melanie Thielker | 2009-05-20 14:40:50 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-05-20 14:40:50 +0000 |
commit | 3ae9bb6d83540ef5acf3cbe4969d0f9c01164d21 (patch) | |
tree | 2f8fe335030dd70795fba2a6334e150c1fab19a4 /OpenSim/Framework/Console/RemoteConsole.cs | |
parent | Remove the pre-log4net, discrete output methods from the consoles (diff) | |
download | opensim-SC_OLD-3ae9bb6d83540ef5acf3cbe4969d0f9c01164d21.zip opensim-SC_OLD-3ae9bb6d83540ef5acf3cbe4969d0f9c01164d21.tar.gz opensim-SC_OLD-3ae9bb6d83540ef5acf3cbe4969d0f9c01164d21.tar.bz2 opensim-SC_OLD-3ae9bb6d83540ef5acf3cbe4969d0f9c01164d21.tar.xz |
Move the color console logic from the appender into the local console, since
that is the only one that can use it. Change appender output to always go
through the console output functions.
Diffstat (limited to 'OpenSim/Framework/Console/RemoteConsole.cs')
-rw-r--r-- | OpenSim/Framework/Console/RemoteConsole.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/RemoteConsole.cs b/OpenSim/Framework/Console/RemoteConsole.cs index ea46afd..fdbf1f4 100644 --- a/OpenSim/Framework/Console/RemoteConsole.cs +++ b/OpenSim/Framework/Console/RemoteConsole.cs | |||
@@ -60,8 +60,9 @@ namespace OpenSim.Framework.Console | |||
60 | m_Server = server; | 60 | m_Server = server; |
61 | } | 61 | } |
62 | 62 | ||
63 | public override void Output(string text) | 63 | public override void Output(string text, string level) |
64 | { | 64 | { |
65 | System.Console.Write(text); | ||
65 | } | 66 | } |
66 | 67 | ||
67 | public override string ReadLine(string p, bool isCommand, bool e) | 68 | public override string ReadLine(string p, bool isCommand, bool e) |