clean up some more logging spam in the jsonstore modules

0.7.4.1
Mic Bowman 2012-04-17 14:23:43 -07:00
parent 4db518b9a3
commit 84891930aa
2 changed files with 4 additions and 2 deletions

View File

@ -97,7 +97,8 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
return; return;
} }
m_log.DebugFormat("[JsonStore] module {0} enabled",(m_enabled ? "is" : "is not")); if (m_enabled)
m_log.DebugFormat("[JsonStore] module is enabled");
} }
// ----------------------------------------------------------------- // -----------------------------------------------------------------

View File

@ -96,7 +96,8 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
return; return;
} }
m_log.DebugFormat("[JsonStoreScripts] module {0} enabled",(m_enabled ? "is" : "is not")); if (m_enabled)
m_log.DebugFormat("[JsonStoreScripts] module is enabled");
} }
// ----------------------------------------------------------------- // -----------------------------------------------------------------