From bc9bfc45d85143a4a6ae1be9b64bf7cb17e44b08 Mon Sep 17 00:00:00 2001 From: Alexis Tyler Date: Mon, 22 Feb 2021 13:18:39 +1030 Subject: [PATCH] fix: print json correctly instead of [Object object] --- app/mothership/subscribe-to-servers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mothership/subscribe-to-servers.ts b/app/mothership/subscribe-to-servers.ts index f7de96bb5..e801343b7 100644 --- a/app/mothership/subscribe-to-servers.ts +++ b/app/mothership/subscribe-to-servers.ts @@ -36,7 +36,7 @@ export const subscribeToServers = async (apiKey: string) => { const subscription = query.subscribe({ next: async ({ data, errors }) => { log.silly('Got data back with %s errors', errors?.length ?? 0); - log.silly('Got data %s', data); + log.silly('Got data %j', data); log.silly('Got errors %s', errors); if (errors) {