diff --git a/src/Cache.cpp b/src/Cache.cpp
index 0bfc28429ff659f04382652333a0ce127340f1ad..d74bbe91058dcabc114d12ba7b628d1be13068a8 100644
--- a/src/Cache.cpp
+++ b/src/Cache.cpp
@@ -1065,8 +1065,8 @@ Cache::saveInvite(lmdb::txn &txn,
                                                            lmdb::val(json(msg).dump()));
 
                                   if (!res)
-                                          std::cout << "couldn't save data" << json(msg).dump()
-                                                    << '\n';
+                                          nhlog::db()->warn("couldn't save data: {}",
+                                                            json(msg).dump());
                           },
                           e);
                 }
diff --git a/src/TextInputWidget.cpp b/src/TextInputWidget.cpp
index 5e63eca54a2b83737bcbab4ca4f0798a78bbc45b..b481a57cecb3d799037059ffac07d2334e63a20b 100644
--- a/src/TextInputWidget.cpp
+++ b/src/TextInputWidget.cpp
@@ -537,7 +537,7 @@ TextInputWidget::TextInputWidget(QWidget *parent)
                                 emit input_->resultsRetrieved(cache::searchUsers(
                                   ChatPage::instance()->currentRoom().toStdString(), q));
                         } catch (const lmdb::error &e) {
-                                std::cout << e.what() << '\n';
+                                nhlog::db()->error("Suggestion retrieval failed: {}", e.what());
                         }
                 });
         });
diff --git a/src/main.cpp b/src/main.cpp
index ec96f0ec923b2388304f22697e1f500f45b62e67..37b38c1bc203a73f6fa111390a8741e0764f387d 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -15,6 +15,8 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <iostream>
+
 #include <QApplication>
 #include <QCommandLineParser>
 #include <QDesktopWidget>
@@ -43,15 +45,15 @@
 #include "emoji/MacHelper.h"
 #endif
 
-#if defined(Q_OS_LINUX)
-#include <boost/stacktrace.hpp>
-#include <csignal>
-
 #ifdef QML_DEBUGGING
 #include <QQmlDebuggingEnabler>
 QQmlDebuggingEnabler enabler;
 #endif
 
+#if defined(Q_OS_LINUX)
+#include <boost/stacktrace.hpp>
+#include <csignal>
+
 void
 stacktraceHandler(int signum)
 {