From 1960a1b2648d9f1a18b6f4661d39d090d775609f Mon Sep 17 00:00:00 2001 From: Nathaniel MacArthur-Warner Date: Thu, 24 Dec 2020 14:55:34 -0800 Subject: [PATCH] Get rid of duplicate log --- simgear/scene/util/OrthophotoManager.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/simgear/scene/util/OrthophotoManager.cxx b/simgear/scene/util/OrthophotoManager.cxx index 3f6ed639..28b1c3ca 100644 --- a/simgear/scene/util/OrthophotoManager.cxx +++ b/simgear/scene/util/OrthophotoManager.cxx @@ -238,8 +238,6 @@ namespace simgear { const Texture2DRef texture = textureFromImage(image); const OrthophotoBounds bbox = OrthophotoBounds::fromBucket(bucket); return new Orthophoto(texture, bbox); - } else { - SG_LOG(SG_OSG, SG_ALERT, "Failed to load orthophoto with path " << dds_path); } } @@ -252,8 +250,6 @@ namespace simgear { const Texture2DRef texture = textureFromImage(image); const OrthophotoBounds bbox = OrthophotoBounds::fromBucket(bucket); return new Orthophoto(texture, bbox); - } else { - SG_LOG(SG_OSG, SG_ALERT, "Failed to load orthophoto with path " << png_path); } } }