From a816cfed03b7a02156377c29bd8a77b9c58333db Mon Sep 17 00:00:00 2001 From: Arseniy-Movshev Date: Thu, 8 Jun 2023 14:55:29 +0100 Subject: Move fileNameForDate to a common header file This function shows up in quite a few places so this seems justified. Other functions may get this treatment later --- daemon/logger.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'daemon/logger.cpp') diff --git a/daemon/logger.cpp b/daemon/logger.cpp index 76f6e25..e8f75ba 100644 --- a/daemon/logger.cpp +++ b/daemon/logger.cpp @@ -21,6 +21,7 @@ #include #include "logger.h" +#include "../common.h" #include "sensorPlugins/stepCounter.h" #include "sensorPlugins/heartrateSensor.h" @@ -146,11 +147,6 @@ QStringList fileGetPrevRecord(QString sensorPrefix, QDateTime recordTime) { return line.split(":"); } -QString fileNameForDate(QDate date, QString prefix) { - QSettings settings("asteroid","sensorlogd"); //this should be moved out of here at some point TODO - return settings.value("loggerRootPath",QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/.asteroid-sensorlogd/").toString() + prefix + "/" + date.toString("yyyy-MM-dd.log"); -} - void setupFilePath(QString sensorPrefix) { QSettings settings("asteroid","sensorlogd"); //this should be moved out of here at some point TODO QDir::root().mkpath(settings.value("loggerRootPath",QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/.asteroid-sensorlogd/").toString() + sensorPrefix); -- cgit v1.2.3-54-g00ecf