diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-01-06 17:19:28 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-01-06 17:19:28 +0100 |
commit | 705a658fefb3f5fe4fba9b621df70ae551272864 (patch) | |
tree | 9db99b4e93df8e422be1921c95d8dda8978d3658 | |
parent | 6f17183bf0594f6b22ee7d2bc47150f611ee3ee2 (diff) | |
download | MultiMC-705a658fefb3f5fe4fba9b621df70ae551272864.tar MultiMC-705a658fefb3f5fe4fba9b621df70ae551272864.tar.gz MultiMC-705a658fefb3f5fe4fba9b621df70ae551272864.tar.lz MultiMC-705a658fefb3f5fe4fba9b621df70ae551272864.tar.xz MultiMC-705a658fefb3f5fe4fba9b621df70ae551272864.zip |
NOISSUE Do not log the analytics client ID into the application log.
-rw-r--r-- | application/MultiMC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp index 13e93842..64a88440 100644 --- a/application/MultiMC.cpp +++ b/application/MultiMC.cpp @@ -526,7 +526,7 @@ void MultiMC::initAnalytics() } m_analytics->enable(); - qDebug() << "Initialized analytics with tid" << BuildConfig.ANALYTICS_ID << "and cid" << clientID; + qDebug() << "Initialized analytics with tid" << BuildConfig.ANALYTICS_ID; } void MultiMC::shutdownAnalytics() |