From 4b7c87b586be42d7545d9e6c68c3c1230a2ffe4c Mon Sep 17 00:00:00 2001
From: Andreas Schenk <andreas_schenk@hms.harvard.edu>
Date: Thu, 14 Apr 2011 17:21:46 -0400
Subject: [PATCH] changed error message (file not parsed completely) in dm3
 import to info message

If a dm3 file is not parsed completely this is no error but just an indication that there is more meta data stored in the file.
---
 modules/io/src/img/map_io_dm3_handler.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/io/src/img/map_io_dm3_handler.cc b/modules/io/src/img/map_io_dm3_handler.cc
index a5964527f..6e7e56816 100644
--- a/modules/io/src/img/map_io_dm3_handler.cc
+++ b/modules/io/src/img/map_io_dm3_handler.cc
@@ -238,7 +238,7 @@ void DM3Collector::ParseStream(std::istream& fp)
   parse_tag_group(0,"ROOT",fp);
   img::Progress::Instance().DeRegister(this);
   if(fp.eof()==0) {
-    LOG_ERROR("file not parsed completely");
+    LOG_INFO("file not parsed completely");
   } else {
     LOG_INFO("file parsed completely");
   }
-- 
GitLab