From 598c5a95d934f7b3a5e71b476b8f0bed39721f8e Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 8 Feb 2008 15:29:53 +0000 Subject: [PATCH] fix the issue found on IRC this morning. The logging call was mistructured so threw and exception when attempting to log that we missed an asset and were waiting for it. --- OpenSim/Framework/Communications/Cache/AssetCache.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs index 84713b9419..158a9bd54c 100644 --- a/OpenSim/Framework/Communications/Cache/AssetCache.cs +++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs @@ -198,7 +198,8 @@ namespace OpenSim.Framework.Communications.Cache } while (--maxPolls > 0); m_log.Warn( - String.Format("[ASSETCACHE]: Asset {0} was not received before the retrieval timeout was reached")); + String.Format("[ASSETCACHE]: Asset {0} was not received before the retrieval timeout was reached", assetID.ToString()) + ); return null; }