aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/hdf5-file.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2014-10-23 13:01:54 +0200
committerThomas White <taw@physics.org>2014-10-23 17:02:33 +0200
commit3e8d906fb6cfcf0940fce2a805087414c4d9ffd6 (patch)
tree4e42fa87d918bf3b82d692529d2f14ba6322ab8d /libcrystfel/src/hdf5-file.c
parent5837aff31eaf429c0799805939dc2da1587556fe (diff)
Increase verbosity
Diffstat (limited to 'libcrystfel/src/hdf5-file.c')
-rw-r--r--libcrystfel/src/hdf5-file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libcrystfel/src/hdf5-file.c b/libcrystfel/src/hdf5-file.c
index 476fd3fc..4269216c 100644
--- a/libcrystfel/src/hdf5-file.c
+++ b/libcrystfel/src/hdf5-file.c
@@ -1332,7 +1332,7 @@ int hdfile_is_scalar(struct hdfile *f, const char *name, int verbose)
check = check_path_existence(f->fh, name);
if ( check == 0 ) {
- ERROR("No such field '%s'\n", name);
+ ERROR("No such scalar field '%s'\n", name);
return 0;
}
@@ -1389,7 +1389,7 @@ static int get_f_value(struct hdfile *f, const char *name, double *val)
check = check_path_existence(f->fh, name);
if ( check == 0 ) {
- ERROR("No such field '%s'\n", name);
+ ERROR("No such float field '%s'\n", name);
return 1;
}
@@ -1450,7 +1450,7 @@ static int get_ev_based_f_value(struct hdfile *f, const char *name,
check_pe = check_path_existence(f->fh, subst_name);
if ( check_pe == 0 ) {
- ERROR("No such field '%s'\n", subst_name);
+ ERROR("No such event-based float field '%s'\n", subst_name);
return 1;
}
@@ -1578,7 +1578,7 @@ static int get_i_value(struct hdfile *f, const char *name, int *val)
check = check_path_existence(f->fh, name);
if ( check == 0 ) {
- ERROR("No such field '%s'\n", name);
+ ERROR("No such integer field '%s'\n", name);
return 1;
}