| 427 | } |
| 428 | |
| 429 | void openDebugLogfile() |
| 430 | { |
| 431 | fs::path pathDebug = LogInstance().m_file_path; |
| 432 | |
| 433 | /* Open debug.log with the associated application */ |
| 434 | if (fs::exists(pathDebug)) |
| 435 | QDesktopServices::openUrl(QUrl::fromLocalFile(PathToQString(pathDebug))); |
| 436 | } |
| 437 | |
| 438 | bool openBitcoinConf() |
| 439 | { |
no test coverage detected