remove some extraneous debug messages from migrations

0.6.0-stable
Sean Dague 2008-09-20 12:44:39 +00:00
parent 2c7a7f8cff
commit 6a691df1a6
1 changed files with 0 additions and 2 deletions

View File

@ -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))