aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-11-21 20:29:20 -0800
committerChris Robinson <[email protected]>2021-11-21 20:29:20 -0800
commit834800c817b3a7b799fc387b51777d555494f91a (patch)
tree890238834a862bc68fc853efcffdab5141cee282 /core
parent0c99a6b316b7e52c12a25d50550291562430834d (diff)
Downgrade some ERRs to WARNs
Diffstat (limited to 'core')
-rw-r--r--core/helpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/helpers.cpp b/core/helpers.cpp
index dcb785c9..97e0caa0 100644
--- a/core/helpers.cpp
+++ b/core/helpers.cpp
@@ -508,7 +508,7 @@ void SetRTPriority()
else
WARN("D-Bus not available\n");
#endif
- ERR("Could not set elevated priority: %s (%d)\n", std::strerror(err), err);
+ WARN("Could not set elevated priority: %s (%d)\n", std::strerror(err), err);
}
#endif