From b24c50c572876483e2d582545b0797cdb3600b57 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Tue, 14 May 2024 12:33:40 +0200 Subject: [PATCH] Parse psa-config-directory and psa-tariff-directory settings. --- DownloadDCJsonFiles/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DownloadDCJsonFiles/main.cpp b/DownloadDCJsonFiles/main.cpp index ab920c9..b044507 100644 --- a/DownloadDCJsonFiles/main.cpp +++ b/DownloadDCJsonFiles/main.cpp @@ -15,6 +15,7 @@ #include "commandline_parser.h" #include "utils.h" #include "update.h" +#include "System.h" #include @@ -68,6 +69,8 @@ int main(int argc, char **argv) { QString plugInDir = parser.plugInDir(); QString plugInName = parser.plugInName(); QString workingDir = parser.workingDir(); + QString psaConfigDir = parser.psaConfigDir(); + QString psaTariffDir = parser.psaTariffDir(); QString iniFileName = parser.iniFileName(); bool const dryRun = parser.dryRun(); bool const noUpdatePsaHardware = parser.noUpdatePsaHardware(); @@ -90,6 +93,8 @@ int main(int argc, char **argv) { qInfo() << "plugInDir ................" << plugInDir; qInfo() << "plugInName ..............." << plugInName; qInfo() << "workingDir ..............." << workingDir; + qInfo() << "psaConfigDir ............." << psaConfigDir; + qInfo() << "psaTariffDir ............." << psaTariffDir; qInfo() << "dryRun ..................." << dryRun; qInfo() << "noUpdatePsaHardware ......" << noUpdatePsaHardware; qInfo() << "alwaysDownloadConfig ....." << alwaysDownloadConfig;