diff options
author | Melanie | 2019-08-20 23:28:59 +0100 |
---|---|---|
committer | Melanie | 2019-08-20 23:28:59 +0100 |
commit | 0fd17c08ae642fac17b24dfad06c61cfe5739483 (patch) | |
tree | 4871c96eab2f5b118cb09d670a3a4ba024cf1210 /OpenSim/Region/OptionalModules/PhysicsParameters | |
parent | change PGSQL migration (diff) | |
download | opensim-SC-0fd17c08ae642fac17b24dfad06c61cfe5739483.zip opensim-SC-0fd17c08ae642fac17b24dfad06c61cfe5739483.tar.gz opensim-SC-0fd17c08ae642fac17b24dfad06c61cfe5739483.tar.bz2 opensim-SC-0fd17c08ae642fac17b24dfad06c61cfe5739483.tar.xz |
Massive console refactor. Greatly simplify interface.
Diffstat (limited to '')
-rwxr-xr-x | OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs b/OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs index bcfb34d..9bcbfda 100755 --- a/OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs +++ b/OpenSim/Region/OptionalModules/PhysicsParameters/PhysicsParameters.cs | |||
@@ -256,13 +256,13 @@ namespace OpenSim.Region.OptionalModules.PhysicsParameters | |||
256 | private void WriteOut(string msg, params object[] args) | 256 | private void WriteOut(string msg, params object[] args) |
257 | { | 257 | { |
258 | // m_log.InfoFormat(msg, args); | 258 | // m_log.InfoFormat(msg, args); |
259 | MainConsole.Instance.OutputFormat(msg, args); | 259 | MainConsole.Instance.Output(msg, null, args); |
260 | } | 260 | } |
261 | 261 | ||
262 | private void WriteError(string msg, params object[] args) | 262 | private void WriteError(string msg, params object[] args) |
263 | { | 263 | { |
264 | // m_log.ErrorFormat(msg, args); | 264 | // m_log.ErrorFormat(msg, args); |
265 | MainConsole.Instance.OutputFormat(msg, args); | 265 | MainConsole.Instance.Output(msg, null, args); |
266 | } | 266 | } |
267 | } | 267 | } |
268 | } | 268 | } |