diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-04-13 16:43:20 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-13 17:07:43 -0700 |
commit | 27b921fb1d0c9d5350a9834837465178aa8e819d (patch) | |
tree | ed7d305f56daeb5a464837ae662b56d688471127 /mobile-widgets/qmlmanager.cpp | |
parent | 114904a48f7ec6f10e355da24be2bfa1e5821a0e (diff) | |
download | subsurface-27b921fb1d0c9d5350a9834837465178aa8e819d.tar.gz |
iOS: make logfile accessible to user
By creating it in the Documents path and setting the two magic keys,
iOS will make the log file available to the user.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 7ddf05e24..9aaca2f24 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -146,7 +146,12 @@ QMLManager::QMLManager() : m_locationServiceEnabled(false), QString libdcLogFileName = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation).first() + "/libdivecomputer.log"; logfile_name = copy_qstring(libdcLogFileName); #if defined(Q_OS_ANDROID) || defined(Q_OS_IOS) +#if defined(Q_OS_ANDROID) appLogFileName = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation).first() + "/subsurface.log"; +#elif defined(Q_OS_IOS) + // on iOS we should save the data to the DocumentsLocation so it becomes accessible to the user + appLogFileName = QStandardPaths::standardLocations(QStandardPaths::DocumentsLocation).first() + "/subsurface.log"; +#endif appLogFile.setFileName(appLogFileName); if (!appLogFile.open(QIODevice::ReadWrite|QIODevice::Truncate)) { appLogFileOpen = false; |