diff options
Diffstat (limited to 'src/main/Logger.cpp')
| -rw-r--r-- | src/main/Logger.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/Logger.cpp b/src/main/Logger.cpp index 8fa98979..56091f42 100644 --- a/src/main/Logger.cpp +++ b/src/main/Logger.cpp @@ -42,15 +42,15 @@ #include "qt/TailsOS.h" // default log path by OS (should be writable) -static const QString defaultLogName = "monero-wallet-gui.log"; +static const QString defaultLogName = "monzero-wallet-gui.log"; #if defined(Q_OS_IOS) //AppDataLocation = "<APPROOT>/Library/Application Support" static const QString osPath = QStandardPaths::standardLocations(QStandardPaths::AppDataLocation).at(0); - static const QString appFolder = "monero-wallet-gui"; + static const QString appFolder = "monzero-wallet-gui"; #elif defined(Q_OS_WIN) //AppDataLocation = "C:/Users/<USER>/AppData/Roaming/<APPNAME>" static const QString osPath = QStandardPaths::standardLocations(QStandardPaths::AppDataLocation).at(0); - static const QString appFolder = "monero-wallet-gui"; + static const QString appFolder = "monzero-wallet-gui"; #elif defined(Q_OS_ANDROID) //AppDataLocation = "<USER>/<APPNAME>/files" static const QString osPath = QStandardPaths::standardLocations(QStandardPaths::AppDataLocation).at(1); @@ -123,7 +123,7 @@ Logger::Logger(QCoreApplication &parent, QString userDefinedLogFilePath) void Logger::resetLogFilePath(bool portable) { m_logFilePath = QDir::toNativeSeparators(getLogPath(m_userDefinedLogFilePath, portable)); - Monero::Wallet::init(m_applicationFilePath.c_str(), "monero-wallet-gui", m_logFilePath.toStdString(), true); + Monero::Wallet::init(m_applicationFilePath.c_str(), "monzero-wallet-gui", m_logFilePath.toStdString(), true); qWarning() << "Logging to" << m_logFilePath; emit logFilePathChanged(); } |
