Skip to content
Snippets Groups Projects
Commit 619219a2 authored by Antti Soininen's avatar Antti Soininen
Browse files

Fix MSVC build warning.

Re #18366
parent b13092bf
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,7 @@ void PeakColumn::read(const size_t index, std::istream &in) {
try {
in >> val;
} catch (std::exception &e) {
g_log.error() << "Could not convert input to a number.\n";
g_log.error() << "Could not convert input to a number. " << e.what() << '\n';
return;
}
......
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