This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
dds
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix logging exceptions generating bad format strings. Oops.
default_compile_flags
vector-of-bool
4 years ago
parent
f5b6dd0080
commit
d711d59e13
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
src/dds/util/parallel.cpp
+ 1
- 1
src/dds/util/parallel.cpp
View File
@@ -8,6 +8,6 @@ void dds::log_exception(std::exception_ptr eptr) noexcept {
try {
std::rethrow_exception(eptr);
} catch (const std::exception& e) {
dds_log(error, e.what());
dds_log(error,
"{}",
e.what());
}
}
Write
Preview
Loading…
Cancel
Save