Commit 4ba80ecf authored by Vladimir Krivosheev's avatar Vladimir Krivosheev Committed by intellij-monorepo-bot
Browse files

remove debug logging

GitOrigin-RevId: e468fef248eca1cfe5efabae1530ef317aa9efd7
parent 86f2d5bd
Branches unavailable Tags unavailable
No related merge requests found
Showing with 0 additions and 5 deletions
+0 -5
......@@ -343,11 +343,6 @@ abstract class ComponentStoreImpl : IComponentStore {
private fun doAddComponent(name: String, component: Any, stateSpec: State?, serviceDescriptor: ServiceDescriptor?): ComponentInfo {
val newInfo = createComponentInfo(component, stateSpec, serviceDescriptor)
val existing = components.put(name, newInfo)
if (name == "GradleSettings") {
LOG.info("hi")
}
if (existing != null && existing.component !== component) {
components.put(name, existing)
LOG.error("Conflicting component name '$name': ${existing.component.javaClass} and ${component.javaClass} (componentManager=${storageManager.componentManager})")
......
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