about summary refs log tree commit diff
path: root/pkgs/applications/altcoins/monero-gui/move-log-file.patch
blob: 08840c6a65e8ddbd7cccc2a98382bf7fc5437070 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
diff --git a/main.cpp b/main.cpp
index c03b160..a8ea263 100644
--- a/main.cpp
+++ b/main.cpp
@@ -80,14 +80,16 @@ int main(int argc, char *argv[])
 //    qDebug() << "High DPI auto scaling - enabled";
 //#endif
 
-    // Log settings
-    Monero::Wallet::init(argv[0], "monero-wallet-gui");
-//    qInstallMessageHandler(messageHandler);
-
     MainApp app(argc, argv);
 
     qDebug() << "app startd";
 
+    // Log settings
+    QString logfile =
+      QStandardPaths::writableLocation(QStandardPaths::CacheLocation)
+      + "/monero-wallet-gui.log";
+    Monero::Wallet::init(argv[0], logfile.toUtf8().constData());
+
     app.setApplicationName("monero-core");
     app.setOrganizationDomain("getmonero.org");
     app.setOrganizationName("monero-project");
diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp
index 74649ce..fe1efc6 100644
--- a/src/libwalletqt/Wallet.cpp
+++ b/src/libwalletqt/Wallet.cpp
@@ -729,7 +729,7 @@ QString Wallet::getWalletLogPath() const
 #ifdef Q_OS_MACOS
     return QStandardPaths::standardLocations(QStandardPaths::HomeLocation).at(0) + "/Library/Logs/" + filename;
 #else
-    return QCoreApplication::applicationDirPath() + "/" + filename;
+    return QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + filename;
 #endif
 }