File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -753,7 +753,7 @@ class TokenTypeBlock extends TokenType {
753
753
enumerateStringForms ( ) ;
754
754
755
755
if ( this . stringForms . length >= WorkspaceQuerier . MAX_STRING_FORMS ) {
756
- console . log (
756
+ console . warn (
757
757
"Warning: Block '" + this . block . id + "' has too many string forms. Search results may not be very good."
758
758
) ;
759
759
this . stringForms . length = 0 ;
@@ -1222,12 +1222,12 @@ export default class WorkspaceQuerier {
1222
1222
}
1223
1223
++ query . resultCount ;
1224
1224
if ( ! limited && query . resultCount >= WorkspaceQuerier . MAX_RESULTS ) {
1225
- console . log ( "Warning: Workspace query exceeded maximum result count." ) ;
1225
+ console . warn ( "Warning: Workspace query exceeded maximum result count." ) ;
1226
1226
limited = true ;
1227
1227
}
1228
1228
1229
1229
if ( ! query . canCreateMoreTokens ( ) ) {
1230
- console . log ( "Warning: Workspace query exceeded maximum token count." ) ;
1230
+ console . warn ( "Warning: Workspace query exceeded maximum token count." ) ;
1231
1231
limited = true ;
1232
1232
break ;
1233
1233
}
You can’t perform that action at this time.
0 commit comments