Settings: log diagnostico all'avvio (path file config + valori letti)

This commit is contained in:
2026-08-12 20:30:47 +02:00
parent d230d543dd
commit 55a94ea4ca
+4
View File
@@ -7,6 +7,10 @@ Settings::Settings(QObject *parent)
: QObject(parent)
, m_settings(QStringLiteral("harbour"), QStringLiteral("calibreweb"))
{
// diagnostica: path reale del file di configurazione e valori letti all'avvio
qDebug() << "Settings file:" << m_settings.fileName();
qDebug() << "Settings read: serverUrl=[" << serverUrl() << "] user=[" << username()
<< "] ssl=" << ignoreSslErrors() << "margin=" << readerMargin();
}
QString Settings::serverUrl() const