diff options
Diffstat (limited to 'OpenSim/Data/Migration.cs')
-rw-r--r-- | OpenSim/Data/Migration.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/Migration.cs b/OpenSim/Data/Migration.cs index 30cd3b6..9447deb 100644 --- a/OpenSim/Data/Migration.cs +++ b/OpenSim/Data/Migration.cs | |||
@@ -227,10 +227,11 @@ namespace OpenSim.Data | |||
227 | 227 | ||
228 | foreach (string s in names) | 228 | foreach (string s in names) |
229 | { | 229 | { |
230 | m_log.InfoFormat("[MIGRATION] - testing resoure {0}", s); | ||
230 | Match m = _match.Match(s); | 231 | Match m = _match.Match(s); |
231 | if (m.Success) | 232 | if (m.Success) |
232 | { | 233 | { |
233 | // m_log.Info("MIGRATION: Match: " + m.Groups[1].ToString()); | 234 | m_log.Info("MIGRATION: Match: " + m.Groups[1].ToString()); |
234 | int version = int.Parse(m.Groups[1].ToString()); | 235 | int version = int.Parse(m.Groups[1].ToString()); |
235 | if (version > after) { | 236 | if (version > after) { |
236 | using (Stream resource = _assem.GetManifestResourceStream(s)) | 237 | using (Stream resource = _assem.GetManifestResourceStream(s)) |