Skip to content

Commit

Permalink
Merge pull request #19 from CGDogan/patch-1
Browse files Browse the repository at this point in the history
Fix wrong message in logs
  • Loading branch information
birm authored Sep 6, 2023
2 parents 13f3e07 + d06c41d commit b42179e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iipsrv/src/BioFormatsImage.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b42179e

Please sign in to comment.