You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.warn('Invalid tile zoom or position:',z,x);
continue;
Some of these may be appropriate to leave as console warnings, but probably many of these should throw some Error instead, which can be caught at the top level so that other applications that use Gosling can more easily access them.
The text was updated successfully, but these errors were encountered:
Currently, there are many places within Gosling where when an error occurs, it is just logged to the console.
For example:
gosling.js/src/core/mark/point.ts
Lines 13 to 15 in 9b36b6c
gosling.js/src/data-fetchers/vcf/vcf-worker.ts
Lines 183 to 185 in 9b36b6c
Some of these may be appropriate to leave as console warnings, but probably many of these should
throw
some Error instead, which can be caught at the top level so that other applications that use Gosling can more easily access them.The text was updated successfully, but these errors were encountered: