From d06c41d3135f1880675842a7c57413b0a63d86e2 Mon Sep 17 00:00:00 2001 From: CGDogan <126820728+CGDogan@users.noreply.github.com> Date: Wed, 6 Sep 2023 12:17:36 +0100 Subject: [PATCH] Fix wrong message in logs --- iipsrv/src/BioFormatsImage.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iipsrv/src/BioFormatsImage.cc b/iipsrv/src/BioFormatsImage.cc index 9250c93..404e53c 100644 --- a/iipsrv/src/BioFormatsImage.cc +++ b/iipsrv/src/BioFormatsImage.cc @@ -41,7 +41,7 @@ void BioFormatsImage::openImage() throw(file_error) logfile << "ERROR: encountered error: " << error << " while opening " << filename << " with BioFormats: " << endl << flush; - throw file_error(string("Error opening '" + filename + "' with OpenSlide, error " + error)); + throw file_error(string("Error opening '" + filename + "' with BioFormats, error " + error)); } #ifdef DEBUG_OSI logfile << "BioFormats :: openImage() :: " << timer.getTime() << " microseconds" << endl