Skip to content

Commit

Permalink
chore: fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed May 9, 2022
1 parent b50372e commit 3965dc0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/datalayer/syncService.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,11 @@ const getSubscribedStoreData = async (
if (!alreadySubscribed) {
const response = await subscribeToStoreOnDataLayer(storeId, ip, port);
if (!response || response.success) {
if (!response) {
logger.debug(
`Response from subscribe RPC came back undefined, is your datalayer running?`,
);
}
logger.debug(
`Retrying subscribe to ${storeId}, subscribe failed`,
retry + 1,
Expand Down

0 comments on commit 3965dc0

Please sign in to comment.