Skip to content

Commit f6516a1

Browse files
flavionegraoflovilmart
authored andcommitted
change log level to debug for classes without subscribers (#2594) (#2637)
1 parent 9d2d208 commit f6516a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LiveQuery/ParseLiveQueryServer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class ParseLiveQueryServer {
108108

109109
let classSubscriptions = this.subscriptions.get(className);
110110
if (typeof classSubscriptions === 'undefined') {
111-
logger.error('Can not find subscriptions under this class ' + className);
111+
logger.debug('Can not find subscriptions under this class ' + className);
112112
return;
113113
}
114114
for (let subscription of classSubscriptions.values()) {
@@ -153,7 +153,7 @@ class ParseLiveQueryServer {
153153

154154
let classSubscriptions = this.subscriptions.get(className);
155155
if (typeof classSubscriptions === 'undefined') {
156-
logger.error('Can not find subscriptions under this class ' + className);
156+
logger.debug('Can not find subscriptions under this class ' + className);
157157
return;
158158
}
159159
for (let subscription of classSubscriptions.values()) {

0 commit comments

Comments
 (0)