From 3e8d906fb6cfcf0940fce2a805087414c4d9ffd6 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 23 Oct 2014 13:01:54 +0200 Subject: Increase verbosity --- libcrystfel/src/geometry.c | 2 +- libcrystfel/src/hdf5-file.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'libcrystfel') diff --git a/libcrystfel/src/geometry.c b/libcrystfel/src/geometry.c index 221fe96d..ae5488e0 100644 --- a/libcrystfel/src/geometry.c +++ b/libcrystfel/src/geometry.c @@ -223,7 +223,7 @@ static Reflection *check_reflection(struct image *image, Crystal *cryst, ERROR("Reflection with rlow < rhigh!\n"); ERROR("%3i %3i %3i rlow = %e, rhigh = %e\n", h, k, l, rlow, rhigh); - ERROR("div + m = %e\n", del); + ERROR("div + m = %e, R = %e, bw = %e\n", del, pr, image->bw); return NULL; } 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; } -- cgit v1.2.3