aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/SQLAssetServer.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/Cache/SQLAssetServer.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Cache/SQLAssetServer.cs b/OpenSim/Framework/Communications/Cache/SQLAssetServer.cs
index 5274288..41a9561 100644
--- a/OpenSim/Framework/Communications/Cache/SQLAssetServer.cs
+++ b/OpenSim/Framework/Communications/Cache/SQLAssetServer.cs
@@ -34,7 +34,6 @@ namespace OpenSim.Framework.Communications.Cache
34{ 34{
35 public class SQLAssetServer : AssetServerBase 35 public class SQLAssetServer : AssetServerBase
36 { 36 {
37
38 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 37 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
39 38
40 #region IPlugin 39 #region IPlugin
@@ -51,7 +50,7 @@ namespace OpenSim.Framework.Communications.Cache
51 50
52 public override void Initialise(ConfigSettings p_set) 51 public override void Initialise(ConfigSettings p_set)
53 { 52 {
54 m_log.Debug("[SQLASSET] Plugin configured initialisation"); 53 m_log.Debug("[SQLAssetServer]: Plugin configured initialisation");
55 Initialise(p_set.StandaloneAssetPlugin,p_set.StandaloneAssetSource); 54 Initialise(p_set.StandaloneAssetPlugin,p_set.StandaloneAssetSource);
56 } 55 }
57 56
@@ -61,7 +60,7 @@ namespace OpenSim.Framework.Communications.Cache
61 60
62 public SQLAssetServer(string pluginName, string connect) 61 public SQLAssetServer(string pluginName, string connect)
63 { 62 {
64 m_log.Debug("[SQLASSET] Direct constructor"); 63 m_log.Debug("[SQLAssetServer]: Direct constructor");
65 Initialise(pluginName, connect); 64 Initialise(pluginName, connect);
66 } 65 }
67 66
@@ -108,7 +107,7 @@ namespace OpenSim.Framework.Communications.Cache
108 107
109 protected override AssetBase GetAsset(AssetRequest req) 108 protected override AssetBase GetAsset(AssetRequest req)
110 { 109 {
111 return m_assetProvider.FetchAsset(req.AssetID);; 110 return m_assetProvider.FetchAsset(req.AssetID);
112 } 111 }
113 112
114 public override void StoreAsset(AssetBase asset) 113 public override void StoreAsset(AssetBase asset)