aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/MySQLMigrations.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLMigrations.cs b/OpenSim/Data/MySQL/MySQLMigrations.cs
index a1f7844..959b5d0 100644
--- a/OpenSim/Data/MySQL/MySQLMigrations.cs
+++ b/OpenSim/Data/MySQL/MySQLMigrations.cs
@@ -77,7 +77,7 @@ namespace OpenSim.Data.MySQL
77 { 77 {
78 m_log.ErrorFormat("[MySQL MIGRATION]: Error {0}", args.Exception.Message); 78 m_log.ErrorFormat("[MySQL MIGRATION]: Error {0}", args.Exception.Message);
79 m_log.ErrorFormat("[MySQL MIGRATION]: In SQL: {0}", args.StatementText); 79 m_log.ErrorFormat("[MySQL MIGRATION]: In SQL: {0}", args.StatementText);
80 m_log.Error("[MySQL MIGRATION]: The above migration failed to complete. This may cause errors in your install, but could also be normal. Continuing."); 80 throw args.Exception;
81 }; 81 };
82 scr.Execute(); 82 scr.Execute();
83 } 83 }