Ensure resolution of mantis 113

0.6.0-stable
Sean Dague 2008-03-11 21:37:35 +00:00
parent 0159aa7048
commit 6340fa0aab
1 changed files with 3 additions and 1 deletions

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)