Commit 2ef07d0f authored by Shaverdova Elena's avatar Shaverdova Elena
Browse files

FUS-107 Project Lifecycle improvement

Statistic key don't need ide name, see comments IDEA-CR-33698
parent 599c115e
Branches unavailable Tags unavailable
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -366,7 +366,7 @@ public class IdeaApplication {
SwingUtilities.invokeLater(PluginManager::reportPluginError);
FUSApplicationUsageTrigger.getInstance().trigger(AppLifecycleUsageTriggerCollector.class, "ide.start");
FeatureUsageLogger.INSTANCE.log("lifecycle", app.getName() + "app.started");
FeatureUsageLogger.INSTANCE.log("lifecycle", "app.started");
});
}
......
......@@ -795,7 +795,7 @@ public class ApplicationImpl extends PlatformComponentManagerImpl implements App
if (restart) {
FUSApplicationUsageTrigger.getInstance().trigger(AppLifecycleUsageTriggerCollector.class, "ide.close.restart");
}
FeatureUsageLogger.INSTANCE.log("lifecycle", getName() + "app.closed", Collections.singletonMap("restart", restart));
FeatureUsageLogger.INSTANCE.log("lifecycle", "app.closed", Collections.singletonMap("restart", restart));
boolean success = disposeSelf(!force);
if (!success || isUnitTestMode() || Boolean.getBoolean("idea.test.guimode")) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment