From 15d39f33caa1ff89e1790a86b06c0785782e5685 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 13 Apr 2009 14:52:29 +0000 Subject: [PATCH] scream out a bit warning if we failed to set default image --- OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs b/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs index af359b31bf..aa2423f6e5 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLImageManager.cs @@ -69,6 +69,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP m_assetCache = pAssetCache; if (pAssetCache != null) m_missingsubstitute = pAssetCache.GetAsset(UUID.Parse("5748decc-f629-461c-9a36-a35a221fe21f"), true); + else + m_log.Error("[ClientView] - couldn't set missing image, all manner of things will probably break"); m_j2kDecodeModule = pJ2kDecodeModule; }