diff options
author | Jeff Ames | 2007-12-06 18:17:44 +0000 |
---|---|---|
committer | Jeff Ames | 2007-12-06 18:17:44 +0000 |
commit | 73599c0f25f67b6a2de61a36849bb8ce0b7b5279 (patch) | |
tree | 6e653c7a057655b25b760cc6fa0ad07444718dd4 /OpenSim/Framework | |
parent | more minor cleanup. added some command descriptions to region server help. (diff) | |
download | opensim-SC_OLD-73599c0f25f67b6a2de61a36849bb8ce0b7b5279.zip opensim-SC_OLD-73599c0f25f67b6a2de61a36849bb8ce0b7b5279.tar.gz opensim-SC_OLD-73599c0f25f67b6a2de61a36849bb8ce0b7b5279.tar.bz2 opensim-SC_OLD-73599c0f25f67b6a2de61a36849bb8ce0b7b5279.tar.xz |
removed obsolete Verbose() function
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Console/LogBase.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/OpenSim/Framework/Console/LogBase.cs b/OpenSim/Framework/Console/LogBase.cs index c226fcb..045970e 100644 --- a/OpenSim/Framework/Console/LogBase.cs +++ b/OpenSim/Framework/Console/LogBase.cs | |||
@@ -164,21 +164,6 @@ namespace OpenSim.Framework.Console | |||
164 | } | 164 | } |
165 | 165 | ||
166 | /// <summary> | 166 | /// <summary> |
167 | /// Sends a informational message to the current log output | ||
168 | /// </summary> | ||
169 | /// <param name="format">The message to send</param> | ||
170 | /// <param name="args">WriteLine-style message arguments</param> | ||
171 | [Obsolete("Please tag your console messages with the location your calling from")] | ||
172 | public void Verbose(string format, params object[] args) | ||
173 | { | ||
174 | if (m_verbose) | ||
175 | { | ||
176 | WriteNewLine(ConsoleColor.Gray, format, args); | ||
177 | return; | ||
178 | } | ||
179 | } | ||
180 | |||
181 | /// <summary> | ||
182 | /// Sends an informational message to the current log output | 167 | /// Sends an informational message to the current log output |
183 | /// </summary> | 168 | /// </summary> |
184 | /// <param name="sender">The module that sent this message</param> | 169 | /// <param name="sender">The module that sent this message</param> |