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.
This commit is contained in:
Sean Dague
2008-02-08 15:29:53 +00:00
parent 5a63047144
commit 598c5a95d9

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