Rename collector of debugger events

This commit is contained in:
Anton Yalyshev
2019-09-17 21:00:00 +03:00
parent 61eb9faecd
commit dfde3b4076
3 changed files with 3 additions and 17 deletions
@@ -20,7 +20,7 @@ enum class FUSEventGroups(groupIdSuffix: String, val events: Set<String> = setOf
Refactoring("ide.action.refactoring", refactoringEvents),
NewFileTemplate("ide.newFileTempl", newFileTemplateEvents),
NPWizards("ide.npwizards", NPWizardsEvents),
Debug("ide.debugger", debugEvalEvents),
Debug("ide.debugger"),
J2K("ide.j2k"),
Editor("ide.editor");
@@ -114,18 +114,4 @@ val NPWizardsEvents = setOf(
"KotlinDslGradleKotlinJSFrameworkSupportProvider",
"KotlinDslGradleKotlinJSBrowserFrameworkSupportProvider",
"KotlinDslGradleKotlinJSNodeFrameworkSupportProvider"
)
val debugEvalEvents = setOf(
"Success",
"NoFrameProxy",
"ThreadNotAvailable",
"ThreadNotSuspended",
"ProcessCancelledException",
"InterpretingException",
"EvaluateException",
"SpecialException",
"GenericException",
"FrontendException",
"BackendException",
"ErrorsInCode"
)
+1 -1
View File
@@ -73,7 +73,7 @@ The Kotlin plugin provides language support in IntelliJ IDEA and Android Studio.
<statistics.counterUsagesCollector groupId="kotlin.ide.action.refactoring" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.newFileTempl" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.npwizards" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.debugger.eval" version="2"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.debugger" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.j2k" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.editor" version="1"/>
<statistics.projectUsagesCollector implementation="org.jetbrains.kotlin.idea.statistics.IDESettingsFUSCollector"/>
+1 -1
View File
@@ -73,7 +73,7 @@ The Kotlin plugin provides language support in IntelliJ IDEA and Android Studio.
<statistics.counterUsagesCollector groupId="kotlin.ide.action.refactoring" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.newFileTempl" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.npwizards" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.debugger.eval" version="2"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.debugger" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.j2k" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.editor" version="1"/>
<statistics.projectUsagesCollector implementation="org.jetbrains.kotlin.idea.statistics.IDESettingsFUSCollector"/>