From 6b3b867559d7197eb5f55c3099526f8ec93de7ed Mon Sep 17 00:00:00 2001 From: jimmylee Date: Tue, 30 Jun 2020 17:41:21 -0700 Subject: [PATCH] server: adds better logging to explain the client is not running locally without a token --- server.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server.js b/server.js index 77fea55f..2f4475a2 100644 --- a/server.js +++ b/server.js @@ -122,7 +122,10 @@ app.prepare().then(async () => { state.library = JSON.parse(parsedLibrary).library; } } catch (e) { - console.log('[ prototype ] you can not run the filecoin client, only web views allowed.'); + console.log('[ prototype ] "/" - WILL REDIRECT TO /SYSTEM '); + console.log('[ prototype ] SLATE WILL NOT RUN LOCALLY UNTIL YOU HAVE '); + console.log('[ prototype ] PROPERLY CONFIGURED POWERGATE AND '); + console.log('[ prototype ] CONNECTED TO THE FILECOIN NETWORK (DEVNET/TESTNET) '); } }