diff options
author | Arseniy-Movshev <dodoradio@outlook.com> | 2023-06-01 00:36:04 +0100 |
---|---|---|
committer | Arseniy-Movshev <dodoradio@outlook.com> | 2023-06-01 13:32:13 +0100 |
commit | d359a519b701849090efcfe896347ab86691a7f5 (patch) | |
tree | a189206982151c4ba34ef4c5ab6c7fad5d87e09c | |
parent | c1e9b5f8a2d287865db3a4d5d056ecf736e05b24 (diff) |
Clean up log messages
-rw-r--r-- | daemon/logger.cpp | 4 | ||||
-rw-r--r-- | daemon/sensorlogd.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/daemon/logger.cpp b/daemon/logger.cpp index d4b4d14..76f6e25 100644 --- a/daemon/logger.cpp +++ b/daemon/logger.cpp @@ -55,9 +55,9 @@ void Logger::setup() { qDebug() << m_iface->lastError(); } if(connect(m_iface, SIGNAL(display_status_ind(QString)), this, SLOT(displayOn(QString)))) { //this fires when the display turns on - qDebug() << "healthd connected display_status signal to slot"; + qDebug() << "connected display_status signal to slot"; } - qDebug() << "healthd sensors logger initialised"; + qDebug() << "sensorlogd setup complete"; this->triggerRecording(); } diff --git a/daemon/sensorlogd.cpp b/daemon/sensorlogd.cpp index deb0799..cff0f16 100644 --- a/daemon/sensorlogd.cpp +++ b/daemon/sensorlogd.cpp @@ -28,7 +28,7 @@ int main(int argc, char **argv) QCoreApplication::setOrganizationDomain("asteroidos.org"); QCoreApplication::setApplicationName("sensorlogd"); Logger sensorsLogger; - qDebug() << "healthd started"; + qDebug() << "sensorlogd starting"; qcoreapp.exec(); return 0; } |