From 6e98471d9114b35a1bd5bdece069c2898475a32e Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Mon, 12 Feb 2018 13:06:37 +0100 Subject: [PATCH] Fix error string --- src/H5Format.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Format.cpp b/src/H5Format.cpp index 9bc9523..54d1b02 100644 --- a/src/H5Format.cpp +++ b/src/H5Format.cpp @@ -106,7 +106,7 @@ const H5::PredType& H5FormatUtils::get_dataset_data_type(const string& type) } else { // We cannot really convert this attribute. stringstream error_message; - error_message << "Unsupported array data_type " << type << endl; + error_message << "[H5FormatUtils::get_dataset_data_type] Unsupported array data_type " << type << endl; throw runtime_error(error_message.str()); }