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.
ThreadPoolClientBranch
Sean Dague 2008-02-08 15:29:53 +00:00
parent 5a63047144
commit 598c5a95d9
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}