diff options
author | Adam Frisby | 2007-07-24 03:59:32 +0000 |
---|---|---|
committer | Adam Frisby | 2007-07-24 03:59:32 +0000 |
commit | 3cbc1e011d8abcfefacc0c72429dd01656f49ef2 (patch) | |
tree | e4674ad62367657780de1d3b5c1743a9ea34ef4b /OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | |
parent | *Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that f... (diff) | |
download | opensim-SC_OLD-3cbc1e011d8abcfefacc0c72429dd01656f49ef2.zip opensim-SC_OLD-3cbc1e011d8abcfefacc0c72429dd01656f49ef2.tar.gz opensim-SC_OLD-3cbc1e011d8abcfefacc0c72429dd01656f49ef2.tar.bz2 opensim-SC_OLD-3cbc1e011d8abcfefacc0c72429dd01656f49ef2.tar.xz |
* Reduced a significant number of compiler warnings (back down to 9 for all projects combined, all 'never used' things)
Diffstat (limited to 'OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs')
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs index cb77405..6ab4178 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsPluginManager.cs | |||
@@ -54,12 +54,12 @@ namespace OpenSim.Physics.Manager | |||
54 | 54 | ||
55 | if(_plugins.ContainsKey(engineName)) | 55 | if(_plugins.ContainsKey(engineName)) |
56 | { | 56 | { |
57 | MainLog.Instance.WriteLine(LogPriority.LOW,"creating "+engineName); | 57 | MainLog.Instance.Verbose("PHYSICS","creating "+engineName); |
58 | return _plugins[engineName].GetScene(); | 58 | return _plugins[engineName].GetScene(); |
59 | } | 59 | } |
60 | else | 60 | else |
61 | { | 61 | { |
62 | MainLog.Instance.WriteLine(LogPriority.MEDIUM,"couldn't find physicsEngine: {0}",engineName); | 62 | MainLog.Instance.Warn("PHYSICS", "couldn't find physicsEngine: {0}", engineName); |
63 | throw new ArgumentException(String.Format("couldn't find physicsEngine: {0}",engineName)); | 63 | throw new ArgumentException(String.Format("couldn't find physicsEngine: {0}",engineName)); |
64 | } | 64 | } |
65 | } | 65 | } |