From 0ab6aac05255078a9d190f6623b2d86d5253d955 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Sat, 20 Feb 2010 17:52:38 -0800 Subject: Added UserAccountData and auth to the SQLite connector. Compiles, runs, but access to these tables doesn't work. --- OpenSim/Services/Base/ServiceBase.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'OpenSim/Services/Base/ServiceBase.cs') diff --git a/OpenSim/Services/Base/ServiceBase.cs b/OpenSim/Services/Base/ServiceBase.cs index 6bbe978..8e24d85 100644 --- a/OpenSim/Services/Base/ServiceBase.cs +++ b/OpenSim/Services/Base/ServiceBase.cs @@ -64,7 +64,7 @@ namespace OpenSim.Services.Base foreach (Type pluginType in pluginAssembly.GetTypes()) { if (pluginType.IsPublic) - { + { if (className != String.Empty && pluginType.ToString() != pluginType.Namespace + "." + className) @@ -84,8 +84,9 @@ namespace OpenSim.Services.Base return null; } - catch (Exception) + catch (Exception e) { + Console.WriteLine("XXX Exception " + e.StackTrace); return null; } } -- cgit v1.1