Skip to content
Snippets Groups Projects
Commit f2c87334 authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Add quotes around print

parent 48db64e7
No related branches found
No related tags found
No related merge requests found
......@@ -804,8 +804,8 @@ bool CompareWorkspaces::checkMasking(API::MatrixWorkspace_const_sptr ws1,
bool CompareWorkspaces::checkSample(const API::Sample &sample1,
const API::Sample &sample2) {
if (sample1.getName() != sample2.getName()) {
g_log.debug() << "WS1 sample name: " << sample1.getName() << "\n";
g_log.debug() << "WS2 sample name: " << sample2.getName() << "\n";
g_log.debug() << "WS1 sample name: \"" << sample1.getName() << "\"\n";
g_log.debug() << "WS2 sample name: \"" << sample2.getName() << "\"\n";
recordMismatch("Sample name mismatch");
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment