diff options
author | Robert Adams | 2012-03-23 13:11:58 -0700 |
---|---|---|
committer | Robert Adams | 2012-03-23 13:11:58 -0700 |
commit | 164706043d68108a6144abf306739cccfc3133a3 (patch) | |
tree | 6c835138fc1a29b43019d500063b3538d433be86 | |
parent | fix yield prolog so it compiles with mono 2.11 there has been a bugzilla (diff) | |
download | opensim-SC_OLD-164706043d68108a6144abf306739cccfc3133a3.zip opensim-SC_OLD-164706043d68108a6144abf306739cccfc3133a3.tar.gz opensim-SC_OLD-164706043d68108a6144abf306739cccfc3133a3.tar.bz2 opensim-SC_OLD-164706043d68108a6144abf306739cccfc3133a3.tar.xz |
Have the PhysicsParameters module output console command responses
directly to the console rather than logging at INFO (which doesn't
output anything for WARN).
There should really be a WriteLine method on ICommandConsole so all
of the different commands don't have to figure out where the command
output should go.
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs b/OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs index a3f68e5..e452124 100755 --- a/OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs +++ b/OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs | |||
@@ -264,14 +264,14 @@ namespace OpenSim.Region.OptionalModules.PhysicsParameters | |||
264 | 264 | ||
265 | private void WriteOut(string msg, params object[] args) | 265 | private void WriteOut(string msg, params object[] args) |
266 | { | 266 | { |
267 | m_log.InfoFormat(msg, args); | 267 | // m_log.InfoFormat(msg, args); |
268 | // MainConsole.Instance.OutputFormat(msg, args); | 268 | MainConsole.Instance.OutputFormat(msg, args); |
269 | } | 269 | } |
270 | 270 | ||
271 | private void WriteError(string msg, params object[] args) | 271 | private void WriteError(string msg, params object[] args) |
272 | { | 272 | { |
273 | m_log.ErrorFormat(msg, args); | 273 | // m_log.ErrorFormat(msg, args); |
274 | // MainConsole.Instance.OutputFormat(msg, args); | 274 | MainConsole.Instance.OutputFormat(msg, args); |
275 | } | 275 | } |
276 | } | 276 | } |
277 | } \ No newline at end of file | 277 | } |