| 358 | } |
| 359 | |
| 360 | void openDebugLogfile() |
| 361 | { |
| 362 | fs::path pathDebug = GetDataDir() / "debug.log"; |
| 363 | |
| 364 | /* Open debug.log with the associated application */ |
| 365 | if (fs::exists(pathDebug)) |
| 366 | QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug))); |
| 367 | } |
| 368 | |
| 369 | bool openBitcoinConf() |
| 370 | { |
no test coverage detected