Mercurial > hg > orthanc-gdcm
changeset 94:6ed93f4de06e
lower verbosity
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Thu, 29 Aug 2024 12:34:04 +0200 (9 months ago) |
parents | e1fc221e054a |
children | 8676f157c427 cebbb70ca3c1 |
files | Plugin/Plugin.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugin/Plugin.cpp Fri Aug 02 16:05:23 2024 +0200 +++ b/Plugin/Plugin.cpp Thu Aug 29 12:34:04 2024 +0200 @@ -182,14 +182,14 @@ { *target = NULL; - LOG(WARNING) << "Cannot decode image using GDCM: " << e.What(); + LOG(INFO) << "Cannot decode image using GDCM: " << e.What(); return OrthancPluginErrorCode_Plugin; } catch (std::runtime_error& e) { *target = NULL; - LOG(WARNING) << "Cannot decode image using GDCM: " << e.what(); + LOG(INFO) << "Cannot decode image using GDCM: " << e.what(); return OrthancPluginErrorCode_Plugin; } catch (...)