aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/utils
diff options
context:
space:
mode:
authorAndrej Rode <andrej.rode@ettus.com>2017-04-06 11:53:48 -0700
committerMartin Braun <martin.braun@ettus.com>2017-04-07 14:54:03 -0700
commitc1a8f73a008981ea4b0cc841474f20bc704be29d (patch)
tree8a13d1af27dd63c5dd755f9de889a5fdadd98470 /host/lib/utils
parent543c8c40f1aab7e7c394af4e1195a722fa0a047e (diff)
downloaduhd-c1a8f73a008981ea4b0cc841474f20bc704be29d.tar.gz
uhd-c1a8f73a008981ea4b0cc841474f20bc704be29d.tar.bz2
uhd-c1a8f73a008981ea4b0cc841474f20bc704be29d.zip
logging: remove unecessery newlines in log messages
Diffstat (limited to 'host/lib/utils')
-rw-r--r--host/lib/utils/thread_priority.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/utils/thread_priority.cpp b/host/lib/utils/thread_priority.cpp
index 084d023bf..729edcf0a 100644
--- a/host/lib/utils/thread_priority.cpp
+++ b/host/lib/utils/thread_priority.cpp
@@ -29,7 +29,7 @@ bool uhd::set_thread_priority_safe(float priority, bool realtime){
UHD_LOGGER_WARNING("UHD") << boost::format(
"Unable to set the thread priority. Performance may be negatively affected.\n"
"Please see the general application notes in the manual for instructions.\n"
- "%s\n"
+ "%s"
) % e.what();
return false;
}