diff options
author | Sean Dague | 2008-09-20 12:44:39 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-20 12:44:39 +0000 |
commit | 6a691df1a602db75187aec51ff174178a8e8998f (patch) | |
tree | 1a072ad423950709a62937ec64cbb2845a8629a8 /OpenSim/Data | |
parent | Removing empty folder (diff) | |
download | opensim-SC_OLD-6a691df1a602db75187aec51ff174178a8e8998f.zip opensim-SC_OLD-6a691df1a602db75187aec51ff174178a8e8998f.tar.gz opensim-SC_OLD-6a691df1a602db75187aec51ff174178a8e8998f.tar.bz2 opensim-SC_OLD-6a691df1a602db75187aec51ff174178a8e8998f.tar.xz |
remove some extraneous debug messages from migrations
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/Migration.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Data/Migration.cs b/OpenSim/Data/Migration.cs index 2083088..8fbf789 100644 --- a/OpenSim/Data/Migration.cs +++ b/OpenSim/Data/Migration.cs | |||
@@ -236,11 +236,9 @@ namespace OpenSim.Data | |||
236 | 236 | ||
237 | foreach (string s in names) | 237 | foreach (string s in names) |
238 | { | 238 | { |
239 | m_log.InfoFormat("[MIGRATIONS]: testing resource {0}", s); | ||
240 | Match m = _match.Match(s); | 239 | Match m = _match.Match(s); |
241 | if (m.Success) | 240 | if (m.Success) |
242 | { | 241 | { |
243 | m_log.Info("[MIGRATIONS]: Match: " + m.Groups[1].ToString()); | ||
244 | int version = int.Parse(m.Groups[1].ToString()); | 242 | int version = int.Parse(m.Groups[1].ToString()); |
245 | if (version > after) { | 243 | if (version > after) { |
246 | using (Stream resource = _assem.GetManifestResourceStream(s)) | 244 | using (Stream resource = _assem.GetManifestResourceStream(s)) |