From efbb44b98af8b2b4d59c00b90034c10d6966f60f Mon Sep 17 00:00:00 2001 From: Mike Mazur Date: Mon, 16 Feb 2009 02:28:43 +0000 Subject: Standardize logging messages. --- .../AssetInventoryServer/AssetInventoryConfig.cs | 4 +- .../AssetInventoryServer/AssetInventoryServer.cs | 16 ++++---- .../Plugins/AuthorizeAllPlugin.cs | 4 +- .../Plugins/BrowseFrontendPlugin.cs | 4 +- .../Plugins/NullAuthenticationPlugin.cs | 4 +- .../Plugins/NullMetricsPlugin.cs | 26 ++++++------ .../Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs | 12 +++--- .../Plugins/OpenSim/OpenSimAssetStoragePlugin.cs | 10 ++--- .../OpenSim/OpenSimInventoryFrontendPlugin.cs | 16 ++++---- .../OpenSim/OpenSimInventoryStoragePlugin.cs | 46 +++++++++++----------- .../Plugins/ReferenceFrontendPlugin.cs | 6 +-- .../Plugins/Simple/SimpleAssetStoragePlugin.cs | 16 ++++---- .../Plugins/Simple/SimpleInventoryStoragePlugin.cs | 20 +++++----- 13 files changed, 92 insertions(+), 92 deletions(-) (limited to 'OpenSim/Grid') diff --git a/OpenSim/Grid/AssetInventoryServer/AssetInventoryConfig.cs b/OpenSim/Grid/AssetInventoryServer/AssetInventoryConfig.cs index ed56c75..d0f4250 100644 --- a/OpenSim/Grid/AssetInventoryServer/AssetInventoryConfig.cs +++ b/OpenSim/Grid/AssetInventoryServer/AssetInventoryConfig.cs @@ -55,8 +55,8 @@ namespace OpenSim.Grid.AssetInventoryServer if (!File.Exists(iniFilePath)) { - m_log.FatalFormat("[CONFIG] File {0} not found, could not load any configuration.", iniFilePath); - m_log.FatalFormat("[CONFIG] Did you copy the AssetInventoryServer.ini.example file to AssetInventoryServer.ini?"); + m_log.FatalFormat("[CONFIG]: File {0} not found, could not load any configuration.", iniFilePath); + m_log.FatalFormat("[CONFIG]: Did you copy the AssetInventoryServer.ini.example file to AssetInventoryServer.ini?"); Environment.Exit(1); } diff --git a/OpenSim/Grid/AssetInventoryServer/AssetInventoryServer.cs b/OpenSim/Grid/AssetInventoryServer/AssetInventoryServer.cs index 4b5af05..07cbade 100644 --- a/OpenSim/Grid/AssetInventoryServer/AssetInventoryServer.cs +++ b/OpenSim/Grid/AssetInventoryServer/AssetInventoryServer.cs @@ -63,7 +63,7 @@ namespace OpenSim.Grid.AssetInventoryServer public bool Start() { Startup(); - m_log.Info("[ASSETINVENTORY] Starting AssetInventory Server"); + m_log.Info("[ASSETINVENTORY]: Starting AssetInventory Server"); try { @@ -71,7 +71,7 @@ namespace OpenSim.Grid.AssetInventoryServer } catch (Exception) { - m_log.Error("[ASSETINVENTORY] Failed to load the config."); + m_log.Error("[ASSETINVENTORY]: Failed to load the config."); return false; } @@ -92,7 +92,7 @@ namespace OpenSim.Grid.AssetInventoryServer } catch (Exception ex) { - m_log.Error("[ASSETINVENTORY] Initializing the HTTP server failed, shutting down: " + ex.Message); + m_log.Error("[ASSETINVENTORY]: Initializing the HTTP server failed, shutting down: " + ex.Message); Shutdown(); return false; } @@ -122,18 +122,18 @@ namespace OpenSim.Grid.AssetInventoryServer { foreach (IAssetInventoryServerPlugin plugin in m_frontends) { - m_log.Debug("[ASSETINVENTORY] Disposing plugin " + plugin.Name); + m_log.Debug("[ASSETINVENTORY]: Disposing plugin " + plugin.Name); try { plugin.Dispose(); } catch (Exception ex) - { m_log.ErrorFormat("[ASSETINVENTORY] Failure shutting down plugin {0}: {1}", plugin.Name, ex.Message); } + { m_log.ErrorFormat("[ASSETINVENTORY]: Failure shutting down plugin {0}: {1}", plugin.Name, ex.Message); } } foreach (IAssetInventoryServerPlugin plugin in m_backends) { - m_log.Debug("[ASSETINVENTORY] Disposing plugin " + plugin.Name); + m_log.Debug("[ASSETINVENTORY]: Disposing plugin " + plugin.Name); try { plugin.Dispose(); } catch (Exception ex) - { m_log.ErrorFormat("[ASSETINVENTORY] Failure shutting down plugin {0}: {1}", plugin.Name, ex.Message); } + { m_log.ErrorFormat("[ASSETINVENTORY]: Failure shutting down plugin {0}: {1}", plugin.Name, ex.Message); } } if (HttpServer != null) @@ -145,7 +145,7 @@ namespace OpenSim.Grid.AssetInventoryServer m_httpServer = new BaseHttpServer(port); m_httpServer.Start(); - m_log.Info("[ASSETINVENTORY] AssetInventory server is listening on port " + port); + m_log.Info("[ASSETINVENTORY]: AssetInventory server is listening on port " + port); } private IAssetInventoryServerPlugin LoadAssetInventoryServerPlugin(string addinPath, string provider) diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/AuthorizeAllPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/AuthorizeAllPlugin.cs index 517da28..9e3a421 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/AuthorizeAllPlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/AuthorizeAllPlugin.cs @@ -50,7 +50,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins { //m_server = server; - m_log.Info("[ASSET] Authorize All loaded."); + m_log.Info("[AUTHORIZEALL]: Authorize All loaded."); } /// @@ -58,7 +58,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins /// public void Initialise() { - m_log.InfoFormat("[ASSET]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[AUTHORIZEALL]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/BrowseFrontendPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/BrowseFrontendPlugin.cs index 3b6e99e..6c98612 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/BrowseFrontendPlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/BrowseFrontendPlugin.cs @@ -59,7 +59,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins // Request for / or /?... //m_server.HttpServer.AddStreamHandler(new BrowseRequestHandler(server)); - m_log.Info("[ASSET] Browser Frontend loaded."); + m_log.Info("[BROWSEFRONTEND]: Browser Frontend loaded."); } /// @@ -67,7 +67,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins /// public void Initialise() { - m_log.InfoFormat("[ASSET]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[BROWSEFRONTEND]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/NullAuthenticationPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/NullAuthenticationPlugin.cs index 386822a..1fbe780 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/NullAuthenticationPlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/NullAuthenticationPlugin.cs @@ -50,7 +50,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins { //m_server = server; - m_log.Info("[ASSET] Null Authentication loaded."); + m_log.Info("[NULLAUTHENTICATION]: Null Authentication loaded."); } /// @@ -58,7 +58,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins /// public void Initialise() { - m_log.InfoFormat("[ASSET]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[NULLAUTHENTICATION]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/NullMetricsPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/NullMetricsPlugin.cs index 7edab93..eef98dc 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/NullMetricsPlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/NullMetricsPlugin.cs @@ -47,72 +47,72 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins public void LogAssetMetadataFetch(string extension, BackendResponse response, UUID assetID, DateTime time) { - m_log.DebugFormat("[{0}] AssetMetadataFetch(): AssetID: {1}, Response: {2}", extension, assetID, response); + m_log.DebugFormat("[{0}]: AssetMetadataFetch(): AssetID: {1}, Response: {2}", extension, assetID, response); } public void LogAssetDataFetch(string extension, BackendResponse response, UUID assetID, int dataSize, DateTime time) { - m_log.DebugFormat("[{0}] AssetDataFetch(): AssetID: {1}, DataSize: {2}, Response: {3}", extension, assetID, + m_log.DebugFormat("[{0}]: AssetDataFetch(): AssetID: {1}, DataSize: {2}, Response: {3}", extension, assetID, dataSize, response); } public void LogAssetCreate(string extension, BackendResponse response, UUID assetID, int dataSize, DateTime time) { - m_log.DebugFormat("[{0}] AssetCreate(): AssetID: {1}, DataSize: {2}, Response: {3}", extension, assetID, + m_log.DebugFormat("[{0}]: AssetCreate(): AssetID: {1}, DataSize: {2}, Response: {3}", extension, assetID, dataSize, response); } public void LogInventoryFetch(string extension, BackendResponse response, Uri owner, UUID objID, bool folder, DateTime time) { - m_log.DebugFormat("[{0}] InventoryFetch(): ObjID: {1}, Folder: {2}, OwnerID: {3}, Response: {4}", extension, + m_log.DebugFormat("[{0}]: InventoryFetch(): ObjID: {1}, Folder: {2}, OwnerID: {3}, Response: {4}", extension, objID, folder, owner, response); } public void LogInventoryFetchFolderContents(string extension, BackendResponse response, Uri owner, UUID folderID, DateTime time) { - m_log.DebugFormat("[{0}] InventoryFetchFolderContents(): FolderID: {1}, OwnerID: {2}, Response: {3}", extension, + m_log.DebugFormat("[{0}]: InventoryFetchFolderContents(): FolderID: {1}, OwnerID: {2}, Response: {3}", extension, folderID, owner, response); } public void LogInventoryFetchFolderList(string extension, BackendResponse response, Uri owner, DateTime time) { - m_log.DebugFormat("[{0}] InventoryFetchFolderList(): OwnerID: {1}, Response: {2}", extension, + m_log.DebugFormat("[{0}]: InventoryFetchFolderList(): OwnerID: {1}, Response: {2}", extension, owner, response); } public void LogInventoryFetchInventory(string extension, BackendResponse response, Uri owner, DateTime time) { - m_log.DebugFormat("[{0}] InventoryFetchInventory(): OwnerID: {1}, Response: {2}", extension, + m_log.DebugFormat("[{0}]: InventoryFetchInventory(): OwnerID: {1}, Response: {2}", extension, owner, response); } public void LogInventoryFetchActiveGestures(string extension, BackendResponse response, Uri owner, DateTime time) { - m_log.DebugFormat("[{0}] InventoryFetchActiveGestures(): OwnerID: {1}, Response: {2}", extension, + m_log.DebugFormat("[{0}]: InventoryFetchActiveGestures(): OwnerID: {1}, Response: {2}", extension, owner, response); } public void LogInventoryCreate(string extension, BackendResponse response, Uri owner, bool folder, DateTime time) { - m_log.DebugFormat("[{0}] InventoryCreate(): OwnerID: {1}, Response: {2}", extension, + m_log.DebugFormat("[{0}]: InventoryCreate(): OwnerID: {1}, Response: {2}", extension, owner, response); } public void LogInventoryCreateInventory(string extension, BackendResponse response, DateTime time) { - m_log.DebugFormat("[{0}] InventoryCreateInventory(): Response: {1}", extension, + m_log.DebugFormat("[{0}]: InventoryCreateInventory(): Response: {1}", extension, response); } public void LogInventoryDelete(string extension, BackendResponse response, Uri owner, UUID objID, bool folder, DateTime time) { - m_log.DebugFormat("[{0}] InventoryDelete(): OwnerID: {1}, Folder: {2}, Response: {3}", extension, + m_log.DebugFormat("[{0}]: InventoryDelete(): OwnerID: {1}, Folder: {2}, Response: {3}", extension, owner, folder, response); } public void LogInventoryPurgeFolder(string extension, BackendResponse response, Uri owner, UUID folderID, DateTime time) { - m_log.DebugFormat("[{0}] InventoryPurgeFolder(): OwnerID: {1}, FolderID: {2}, Response: {3}", extension, + m_log.DebugFormat("[{0}]: InventoryPurgeFolder(): OwnerID: {1}, FolderID: {2}, Response: {3}", extension, owner, response); } @@ -130,7 +130,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins /// public void Initialise() { - m_log.Info("[ASSET] Null metrics loaded."); + m_log.Info("[NULLMETRICS]: Null metrics loaded."); } public void Dispose() diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs index f8f4cce..d2a87e6 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetFrontendPlugin.cs @@ -62,7 +62,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // Asset creation m_server.HttpServer.AddStreamHandler(new AssetPostHandler(server)); - m_log.Info("[ASSET] OpenSim Asset Frontend loaded."); + m_log.Info("[OPENSIMASSETFRONTEND]: OpenSim Asset Frontend loaded."); } /// @@ -70,7 +70,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim /// public void Initialise() { - m_log.InfoFormat("[ASSET]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[OPENSIMASSETFRONTEND]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } @@ -128,13 +128,13 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim } else { - m_log.WarnFormat("Failed to fetch asset data or metadata for {0}: {1}", assetID, dataResponse); + m_log.WarnFormat("[OPENSIMASSETFRONTEND]: Failed to fetch asset data or metadata for {0}: {1}", assetID, dataResponse); httpResponse.StatusCode = (int) HttpStatusCode.NotFound; } } else { - m_log.Warn("Unrecognized OpenSim asset request: " + httpRequest.Url.PathAndQuery); + m_log.Warn("[OPENSIMASSETFRONTEND]: Unrecognized OpenSim asset request: " + httpRequest.Url.PathAndQuery); } return buffer; @@ -161,7 +161,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim } catch (Exception ex) { - m_log.Warn("Failed to parse POST data (expecting AssetBase): " + ex.Message); + m_log.Warn("[OPENSIMASSETFRONTEND]: Failed to parse POST data (expecting AssetBase): " + ex.Message); httpResponse.StatusCode = (int) HttpStatusCode.BadRequest; } @@ -178,7 +178,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim } else { - m_log.Warn("AssetPostHandler called with no asset data"); + m_log.Warn("[OPENSIMASSETFRONTEND]: AssetPostHandler called with no asset data"); httpResponse.StatusCode = (int) HttpStatusCode.BadRequest; } diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetStoragePlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetStoragePlugin.cs index fccf50d..69dcff3 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetStoragePlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimAssetStoragePlugin.cs @@ -134,7 +134,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMASSETSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // return 0; // } @@ -174,15 +174,15 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim m_openSimConfig.GetString("asset_database_connect")); if (m_assetProvider == null) { - m_log.Error("[ASSET]: Failed to load a database plugin, server halting."); + m_log.Error("[OPENSIMASSETSTORAGE]: Failed to load a database plugin, server halting."); Environment.Exit(-1); } else - m_log.InfoFormat("[ASSET]: Loaded storage backend: {0}", Version); + m_log.InfoFormat("[OPENSIMASSETSTORAGE]: Loaded storage backend: {0}", Version); } catch (Exception e) { - m_log.WarnFormat("[ASSET]: Failure loading data plugin: {0}", e.ToString()); + m_log.WarnFormat("[OPENSIMASSETSTORAGE]: Failure loading data plugin: {0}", e.ToString()); } } @@ -191,7 +191,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim /// public void Initialise() { - m_log.InfoFormat("[ASSET]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[OPENSIMASSETSTORAGE]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs index 7f8d8f9..76d7122 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs @@ -67,7 +67,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim //m_server.HttpServer.AddHandler("post", null, @"^/RootFolders/", RootFoldersHandler); //m_server.HttpServer.AddHandler("post", null, @"^/ActiveGestures/", ActiveGesturesHandler); - m_log.Info("[INVENTORY] OpenSim Inventory Frontend loaded."); + m_log.Info("[OPENSIMINVENTORYFRONTEND]: OpenSim Inventory Frontend loaded."); } /// @@ -75,7 +75,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim /// public void Initialise() { - m_log.InfoFormat("[INVENTORY]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[OPENSIMINVENTORYFRONTEND]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } @@ -103,7 +103,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // if (ownerID != UUID.Zero) // { - // m_log.Warn("GetInventory is not scalable on some inventory backends, avoid calling it wherever possible"); + // m_log.Warn("[OPENSIMINVENTORYFRONTEND]: GetInventory is not scalable on some inventory backends, avoid calling it wherever possible"); // Uri owner = Utils.GetOpenSimUri(ownerID); // InventoryCollection inventory; @@ -144,7 +144,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // if (ownerID != UUID.Zero) // { // Uri owner = Utils.GetOpenSimUri(ownerID); - // m_log.DebugFormat("Created URI {0} for inventory creation", owner); + // m_log.DebugFormat("[OPENSIMINVENTORYFRONTEND]: Created URI {0} for inventory creation", owner); // InventoryFolder rootFolder = new InventoryFolder("My Inventory", ownerID, UUID.Zero, (short)AssetType.Folder); // BackendResponse storageResponse = m_server.InventoryProvider.TryCreateInventory(owner, rootFolder); @@ -365,7 +365,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (Exception ex) // { - // m_log.Warn("Failed to parse POST data (expecting guid): " + ex.Message); + // m_log.Warn("[OPENSIMINVENTORYFRONTEND]: Failed to parse POST data (expecting guid): " + ex.Message); // } // return id; @@ -389,7 +389,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (Exception ex) // { - // m_log.Warn("Failed to parse GetInventory POST data: " + ex.Message); + // m_log.Warn("[OPENSIMINVENTORYFRONTEND]: Failed to parse GetInventory POST data: " + ex.Message); // agentID = UUID.Zero; // sessionID = UUID.Zero; // return UUID.Zero; @@ -426,7 +426,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (Exception ex) // { - // m_log.Warn("Failed to parse POST data (expecting InventoryFolderBase): " + ex.Message); + // m_log.Warn("[OPENSIMINVENTORYFRONTEND]: Failed to parse POST data (expecting InventoryFolderBase): " + ex.Message); // agentID = UUID.Zero; // sessionID = UUID.Zero; // return null; @@ -474,7 +474,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (Exception ex) // { - // m_log.Warn("Failed to parse POST data (expecting InventoryItemBase): " + ex.Message); + // m_log.Warn("[OPENSIMINVENTORYFRONTEND]: Failed to parse POST data (expecting InventoryItemBase): " + ex.Message); // agentID = UUID.Zero; // sessionID = UUID.Zero; // return null; diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryStoragePlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryStoragePlugin.cs index 69b8497..2f5d2ca 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryStoragePlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryStoragePlugin.cs @@ -107,7 +107,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } //} @@ -155,7 +155,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } //} @@ -253,7 +253,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } //} @@ -303,7 +303,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } // } @@ -387,7 +387,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } // } @@ -458,7 +458,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } // } @@ -520,18 +520,18 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // else if (rowsAffected == 2) // { - // m_log.Info("Replaced inventory item " + item.ID.ToString()); + // m_log.Info("[OPENSIMINVENTORYSTORAGE]: Replaced inventory item " + item.ID.ToString()); // ret = BackendResponse.Success; // } // else // { - // m_log.ErrorFormat("MySQL REPLACE query affected {0} rows", rowsAffected); + // m_log.ErrorFormat("[OPENSIMINVENTORYSTORAGE]: MySQL REPLACE query affected {0} rows", rowsAffected); // ret = BackendResponse.Failure; // } // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } //} @@ -569,18 +569,18 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // else if (rowsAffected == 2) // { - // m_log.Info("Replaced inventory folder " + folder.ID.ToString()); + // m_log.Info("[OPENSIMINVENTORYSTORAGE]: Replaced inventory folder " + folder.ID.ToString()); // ret = BackendResponse.Success; // } // else // { - // m_log.ErrorFormat("MySQL REPLACE query affected {0} rows", rowsAffected); + // m_log.ErrorFormat("[OPENSIMINVENTORYSTORAGE]: MySQL REPLACE query affected {0} rows", rowsAffected); // ret = BackendResponse.Failure; // } // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } //} @@ -621,13 +621,13 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // else // { - // m_log.ErrorFormat("MySQL DELETE query affected {0} rows", rowsAffected); + // m_log.ErrorFormat("[OPENSIMINVENTORYSTORAGE]: MySQL DELETE query affected {0} rows", rowsAffected); // ret = BackendResponse.NotFound; // } // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } // } @@ -668,13 +668,13 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // else // { - // m_log.ErrorFormat("MySQL DELETE query affected {0} rows", rowsAffected); + // m_log.ErrorFormat("[OPENSIMINVENTORYSTORAGE]: MySQL DELETE query affected {0} rows", rowsAffected); // ret = BackendResponse.NotFound; // } // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } // } @@ -726,13 +726,13 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // #endregion Delete folders - // m_log.DebugFormat("Deleted {0} inventory objects from MySQL in a folder purge", rowsAffected); + // m_log.DebugFormat("[OPENSIMINVENTORYSTORAGE]: Deleted {0} inventory objects from MySQL in a folder purge", rowsAffected); // ret = BackendResponse.Success; // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // ret = BackendResponse.Failure; // } // } @@ -766,7 +766,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim // } // catch (MySqlException ex) // { - // m_log.Error("Connection to MySQL backend failed: " + ex.Message); + // m_log.Error("[OPENSIMINVENTORYSTORAGE]: Connection to MySQL backend failed: " + ex.Message); // return 0; // } @@ -806,15 +806,15 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim m_openSimConfig.GetString("inventory_database_connect")); if (m_inventoryProvider == null) { - m_log.Error("[INVENTORY]: Failed to load a database plugin, server halting."); + m_log.Error("[OPENSIMINVENTORYSTORAGE]: Failed to load a database plugin, server halting."); Environment.Exit(-1); } else - m_log.InfoFormat("[INVENTORY]: Loaded storage backend: {0}", Version); + m_log.InfoFormat("[OPENSIMINVENTORYSTORAGE]: Loaded storage backend: {0}", Version); } catch (Exception e) { - m_log.WarnFormat("[INVENTORY]: Failure loading data plugin: {0}", e.ToString()); + m_log.WarnFormat("[OPENSIMINVENTORYSTORAGE]: Failure loading data plugin: {0}", e.ToString()); } } @@ -824,7 +824,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim public void Initialise() { - m_log.InfoFormat("[INVENTORY]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[OPENSIMINVENTORYSTORAGE]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/ReferenceFrontendPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/ReferenceFrontendPlugin.cs index f19be08..af10393 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/ReferenceFrontendPlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/ReferenceFrontendPlugin.cs @@ -63,7 +63,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins // Asset creation //m_server.HttpServer.AddStreamHandler(new CreateRequestHandler(server)); - m_log.Info("[ASSET] Reference Frontend loaded."); + m_log.Info("[REFERENCEFRONTEND]: Reference Frontend loaded."); } /// @@ -71,7 +71,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins /// public void Initialise() { - m_log.InfoFormat("[ASSET]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[REFERENCEFRONTEND]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } @@ -159,7 +159,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins // } // else if (storageResponse == BackendResponse.NotFound) // { - // m_log.Warn("Could not find metadata for asset " + assetID.ToString()); + // m_log.Warn("[REFERENCEFRONTEND]: Could not find metadata for asset " + assetID.ToString()); // httpResponse.StatusCode = (int) HttpStatusCode.NotFound; // } // else diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/Simple/SimpleAssetStoragePlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/Simple/SimpleAssetStoragePlugin.cs index 384f5f0..26c34e9 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/Simple/SimpleAssetStoragePlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/Simple/SimpleAssetStoragePlugin.cs @@ -83,7 +83,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.ErrorFormat("Failed reading data for asset {0} from {1}: {2}", assetID, filename, ex.Message); + m_log.ErrorFormat("[SIMPLEASSETSTORAGE]: Failed reading data for asset {0} from {1}: {2}", assetID, filename, ex.Message); ret = BackendResponse.Failure; } } @@ -114,7 +114,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.ErrorFormat("Failed reading data for asset {0} from {1}: {2}", assetID, filename, ex.Message); + m_log.ErrorFormat("[SIMPLEASSETSTORAGE]: Failed reading data for asset {0} from {1}: {2}", assetID, filename, ex.Message); ret = BackendResponse.Failure; } @@ -165,7 +165,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.ErrorFormat("Failed writing data for asset {0} to {1}: {2}", asset.FullID, filename, ex.Message); + m_log.ErrorFormat("[SIMPLEASSETSTORAGE]: Failed writing data for asset {0} to {1}: {2}", asset.FullID, filename, ex.Message); ret = BackendResponse.Failure; } @@ -203,7 +203,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple LoadFiles(DEFAULT_DATA_DIR, false); LoadFiles(TEMP_DATA_DIR, true); - m_log.InfoFormat("Initialized the store index with metadata for {0} assets", + m_log.InfoFormat("[SIMPLEASSETSTORAGE]: Initialized the store index with metadata for {0} assets", metadataStorage.Count); } @@ -212,7 +212,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple /// public void Initialise() { - m_log.InfoFormat("[ASSET]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[SIMPLEASSETSTORAGE]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } @@ -239,7 +239,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple if (Directory.Exists(TEMP_DATA_DIR)) { try { Directory.Delete(TEMP_DATA_DIR); } - catch (Exception ex) { m_log.Error(ex.Message); } + catch (Exception ex) { m_log.Error("[SIMPLEASSETSTORAGE]: " + ex.Message); } } } @@ -251,7 +251,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple try { Directory.CreateDirectory(folder); } catch (Exception ex) { - m_log.Warn(ex.Message); + m_log.Warn("[SIMPLEASSETSTORAGE]: " + ex.Message); return; } } @@ -283,7 +283,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.Warn(ex.Message); + m_log.Warn("[SIMPLEASSETSTORAGE]: " + ex.Message); } } } diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/Simple/SimpleInventoryStoragePlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/Simple/SimpleInventoryStoragePlugin.cs index e317ae3..fee8837 100644 --- a/OpenSim/Grid/AssetInventoryServer/Plugins/Simple/SimpleInventoryStoragePlugin.cs +++ b/OpenSim/Grid/AssetInventoryServer/Plugins/Simple/SimpleInventoryStoragePlugin.cs @@ -210,7 +210,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.Error(ex.Message); + m_log.Error("[SIMPLEINVENTORYSTORAGE]: " + ex.Message); ret = BackendResponse.Failure; } } @@ -252,7 +252,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.Error(ex.Message); + m_log.Error("[SIMPLEINVENTORYSTORAGE]: " + ex.Message); ret = BackendResponse.Failure; } } @@ -306,7 +306,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.Error(ex.Message); + m_log.Error("[SIMPLEINVENTORYSTORAGE]: " + ex.Message); ret = BackendResponse.Failure; } } @@ -354,7 +354,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple foreach (string match in matches) { try { File.Delete(match); } - catch (Exception ex) { m_log.ErrorFormat("Failed to delete file {0}: {1}", match, ex.Message); } + catch (Exception ex) { m_log.ErrorFormat("[SIMPLEINVENTORYSTORAGE]: Failed to delete file {0}: {1}", match, ex.Message); } } ret = BackendResponse.Success; @@ -391,7 +391,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple foreach (string match in matches) { try { File.Delete(match); } - catch (Exception ex) { m_log.ErrorFormat("Failed to delete folder file {0}: {1}", match, ex.Message); } + catch (Exception ex) { m_log.ErrorFormat("[SIMPLEINVENTORYSTORAGE]: Failed to delete folder file {0}: {1}", match, ex.Message); } } ret = BackendResponse.Success; @@ -502,7 +502,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple try { Directory.CreateDirectory(folder); } catch (Exception ex) { - m_log.Warn(ex.Message); + m_log.Warn("[SIMPLEINVENTORYSTORAGE]: " + ex.Message); return; } } @@ -526,7 +526,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.WarnFormat("Failed loading the index file {0}: {1}", indexPath, ex.Message); + m_log.WarnFormat("[SIMPLEINVENTORYSTORAGE]: Failed loading the index file {0}: {1}", indexPath, ex.Message); } if (ownerID != UUID.Zero && owner != null) @@ -582,7 +582,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple } catch (Exception ex) { - m_log.ErrorFormat("Failed loading inventory from {0}: {1}", folder, ex.Message); + m_log.ErrorFormat("[SIMPLEINVENTORYSTORAGE]: Failed loading inventory from {0}: {1}", folder, ex.Message); } } @@ -594,7 +594,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple LoadFiles(DEFAULT_INVENTORY_DIR); - m_log.InfoFormat("Initialized the inventory index with data for {0} avatars", + m_log.InfoFormat("[SIMPLEINVENTORYSTORAGE]: Initialized the inventory index with data for {0} avatars", inventories.Count); } @@ -603,7 +603,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.Simple /// public void Initialise() { - m_log.InfoFormat("[ASSET]: {0} cannot be default-initialized!", Name); + m_log.InfoFormat("[SIMPLEINVENTORYSTORAGE]: {0} cannot be default-initialized!", Name); throw new PluginNotInitialisedException(Name); } -- cgit v1.1