remove debug logging

GitOrigin-RevId: e468fef248eca1cfe5efabae1530ef317aa9efd7
This commit is contained in:
Vladimir Krivosheev
2019-10-17 05:31:27 +00:00
committed by intellij-monorepo-bot
parent 86f2d5bd25
commit 4ba80ecf2c
@@ -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})")