From 53aa433a5a9ee7c224bd29c252bdcaf723c37c37 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 b65d35e5..e9196bf0 100644 --- a/lib/index.js +++ b/lib/index.js @@ -259,6 +259,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");