From 457594cfc66097436d8e04fcbc3ee8f715129713 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Thu, 26 Jul 2018 14:13:44 -0400 Subject: [PATCH] add missing services start so console works with refactor changes --- lib/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/index.js b/lib/index.js index 0aa6b2869..92d2aad24 100644 --- a/lib/index.js +++ b/lib/index.js @@ -262,6 +262,8 @@ class Embark { engine.logger.info(__("loaded plugins") + ": " + pluginList.join(", ")); } + engine.startService("processManager"); + engine.startService("serviceMonitor"); engine.startService("libraryManager"); engine.startService("codeRunner"); engine.startService("web3");