Ensure resolution of mantis 113

This commit is contained in:
Sean Dague
2008-03-11 21:37:35 +00:00
parent 0159aa7048
commit 6340fa0aab

View File

@@ -137,10 +137,12 @@ namespace OpenSim.Framework.Data.SQLite
string temporary = asset.Temporary ? "Temporary" : "Stored";
string local = asset.Local ? "Local" : "Remote";
int assetLength = (asset.Data != null) ? asset.Data.Length : 0;
m_log.Info("[SQLITE]: " +
string.Format("Loaded {6} {5} Asset: [{0}][{3}/{4}] \"{1}\":{2} ({7} bytes)",
asset.FullID, asset.Name, asset.Description, asset.Type,
asset.InvType, temporary, local, asset.Data.Length));
asset.InvType, temporary, local, assetLength));
}
public bool ExistsAsset(LLUUID uuid)