aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2022-03-02 09:47:02 +0100
committerThomas White <taw@physics.org>2022-03-02 09:47:02 +0100
commit1c797288d024b911b39028f25635349501721ce3 (patch)
tree79a7df17d064f3cf1995b3de002409ee19fad8df
parent31f03d0a978df94d4336394923d698c1689d7fcf (diff)
Formatting and increased verbosity
-rw-r--r--libcrystfel/src/image-hdf5.c2
-rw-r--r--src/process_image.c5
2 files changed, 3 insertions, 4 deletions
diff --git a/libcrystfel/src/image-hdf5.c b/libcrystfel/src/image-hdf5.c
index 8ec76ee6..07e3b6b8 100644
--- a/libcrystfel/src/image-hdf5.c
+++ b/libcrystfel/src/image-hdf5.c
@@ -1833,7 +1833,7 @@ char **image_hdf5_expand_frames(const DataTemplate *dtempl,
fh = H5Fopen(filename, H5F_ACC_RDONLY, H5P_DEFAULT);
if ( fh < 0 ) {
- ERROR("Couldn't open file (expand): %s\n", filename);
+ ERROR("Couldn't open file (hdf5_expand_frames): %s\n", filename);
return NULL;
}
diff --git a/src/process_image.c b/src/process_image.c
index 4f779708..7e7adbaf 100644
--- a/src/process_image.c
+++ b/src/process_image.c
@@ -130,8 +130,7 @@ static struct image *file_wait_open_read(const char *filename,
if ( (wait_for_file != 0) && (file_wait_time != 0) ) {
if ( !wait_message_done ) {
- STATUS("Waiting for '%s'\n",
- filename);
+ STATUS("Waiting for '%s'\n", filename);
wait_message_done = 1;
}
@@ -143,7 +142,7 @@ static struct image *file_wait_open_read(const char *filename,
}
- ERROR("File %s not found\n", filename);
+ ERROR("File not found: %s (process_image)\n", filename);
return NULL;
}