Skip to content

Commit

Permalink
refactor installation wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
shalom938 committed Dec 20, 2024
1 parent a52cbdd commit 7691fc0
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,17 @@ class InstallationWizardPanel(private val project: Project, private val wizardSk
}
}

sendIsDigmaEngineInstalled(LocalInstallationFacade.getInstance().isLocalEngineInstalled(), browser)
sendIsDigmaEngineRunning(LocalInstallationFacade.getInstance().isLocalEngineRunning(project), browser)
val isLocalEngineInstalled = LocalInstallationFacade.getInstance().isLocalEngineInstalled()
val isLocalEngineRunning = LocalInstallationFacade.getInstance().isLocalEngineRunning(project)
Log.log(
logger::trace,
project,
"updating wizard with isLocalEngineInstalled={},isLocalEngineRunning={}",
isLocalEngineInstalled,
isLocalEngineRunning
)
sendIsDigmaEngineInstalled(isLocalEngineInstalled, browser)
sendIsDigmaEngineRunning(isLocalEngineRunning, browser)


} catch (e: Exception) {
Expand Down

0 comments on commit 7691fc0

Please sign in to comment.