mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
remove some extraneous debug messages from migrations
This commit is contained in:
@@ -236,11 +236,9 @@ namespace OpenSim.Data
|
||||
|
||||
foreach (string s in names)
|
||||
{
|
||||
m_log.InfoFormat("[MIGRATIONS]: testing resource {0}", s);
|
||||
Match m = _match.Match(s);
|
||||
if (m.Success)
|
||||
{
|
||||
m_log.Info("[MIGRATIONS]: Match: " + m.Groups[1].ToString());
|
||||
int version = int.Parse(m.Groups[1].ToString());
|
||||
if (version > after) {
|
||||
using (Stream resource = _assem.GetManifestResourceStream(s))
|
||||
|
||||
Reference in New Issue
Block a user