From 6a691df1a602db75187aec51ff174178a8e8998f Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Sat, 20 Sep 2008 12:44:39 +0000 Subject: [PATCH] remove some extraneous debug messages from migrations --- OpenSim/Data/Migration.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenSim/Data/Migration.cs b/OpenSim/Data/Migration.cs index 208308809c..8fbf7899e1 100644 --- a/OpenSim/Data/Migration.cs +++ b/OpenSim/Data/Migration.cs @@ -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))