diff --git a/src/LiveQuery/ParseLiveQueryServer.js b/src/LiveQuery/ParseLiveQueryServer.js index 044c653660..6f737f6d58 100644 --- a/src/LiveQuery/ParseLiveQueryServer.js +++ b/src/LiveQuery/ParseLiveQueryServer.js @@ -108,7 +108,7 @@ class ParseLiveQueryServer { let classSubscriptions = this.subscriptions.get(className); if (typeof classSubscriptions === 'undefined') { - logger.error('Can not find subscriptions under this class ' + className); + logger.debug('Can not find subscriptions under this class ' + className); return; } for (let subscription of classSubscriptions.values()) { @@ -153,7 +153,7 @@ class ParseLiveQueryServer { let classSubscriptions = this.subscriptions.get(className); if (typeof classSubscriptions === 'undefined') { - logger.error('Can not find subscriptions under this class ' + className); + logger.debug('Can not find subscriptions under this class ' + className); return; } for (let subscription of classSubscriptions.values()) {