Skip to content

Commit

Permalink
Fix wrong message in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
CGDogan authored Sep 6, 2023
1 parent 13f3e07 commit d06c41d
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 d06c41d

Please sign in to comment.