mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
72682e4654
Signed-off-by: William Casarin <jb55@jb55.com>
16 lines
588 B
Diff
16 lines
588 B
Diff
diff --git a/main.cpp b/main.cpp
|
|
index a51568d..5a9f683 100644
|
|
--- a/main.cpp
|
|
+++ b/main.cpp
|
|
@@ -152,7 +152,9 @@ int main(int argc, char *argv[])
|
|
QCommandLineOption logPathOption(QStringList() << "l" << "log-file",
|
|
QCoreApplication::translate("main", "Log to specified file"),
|
|
QCoreApplication::translate("main", "file"));
|
|
-
|
|
+ logPathOption.setDefaultValue(
|
|
+ QStandardPaths::writableLocation(QStandardPaths::CacheLocation)
|
|
+ + "/monero-wallet-gui.log");
|
|
parser.addOption(logPathOption);
|
|
parser.addHelpOption();
|
|
parser.process(app);
|