From de5e30896ff83606e29489e66414d49bef62ccd4 Mon Sep 17 00:00:00 2001
From: kledmundson <6842706+kledmundson@users.noreply.github.com>
Date: Thu, 7 Nov 2024 09:27:37 -0700
Subject: [PATCH] Removed a debug output statement inadvertently left in
 noseam.cpp. Addresses #5660. (#5661)

---
 CHANGELOG.md                         | 2 ++
 isis/src/base/apps/noseam/noseam.cpp | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ff7afea445..0c072fb51e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -46,6 +46,8 @@ release.
 - Updated pixel2map documentation
 
 ### Fixed
+- Fixed noseam bug where a debugging output statement was inadvertently left in noseam.cpp.
+Issue: [5660](https://github.com/DOI-USGS/ISIS3/issues/5660)
 - Fixed jigsaw bugs in which RADIUS is handled incorrectly in the jigsaw gui and in the bundleout.txt
 file. Slightly modified the FunctionalTestJigsawBundleXYZ ctest accordingly. Issue: [5642](https://github.com/DOI-USGS/ISIS3/issues/5642)
 - Fixed a bug in isisminer in which bad (e.g. self-intersecting) polygon geometries were not treated properly. Added pertinent unit tests to GisGeometry and Strategy classes. Issue: [5612](https://github.com/DOI-USGS/ISIS3/issues/5612)
diff --git a/isis/src/base/apps/noseam/noseam.cpp b/isis/src/base/apps/noseam/noseam.cpp
index aaa198a1b1..bd59546c2c 100644
--- a/isis/src/base/apps/noseam/noseam.cpp
+++ b/isis/src/base/apps/noseam/noseam.cpp
@@ -32,7 +32,7 @@ namespace Isis {
 
     // Get Filename with list of cubes to mosaic
     FileName cubeListFileName(ui.GetFileName("FROMLIST"));
-    std::cout << "***going to run 2nd noseam method\n";
+
     return noseam(cubeListFileName, ui);
   }
 
-- 
GitLab