aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Console')
-rw-r--r--OpenSim/Framework/Console/LogBase.cs15
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>