MartinMalinda / vue-concurrency

A library for encapsulating asynchronous operations and managing concurrency for Vue and Composition API.
https://vue-concurrency.netlify.app/
MIT License
350 stars 15 forks source link

Missing error logging? #16

Open MartinMalinda opened 4 years ago

MartinMalinda commented 4 years ago

By the design of the task that is catching errors, these errors might not appear in the console.

The task could print these errors in the console anyways, but I need to think in what cases it's actually desirable.

If I remember right ember-concurrency does that only in development environment, but ember plugins are more opinionated and have more "support" from the parent app, while vue plugins are just packages. I'll have to check if there's a way for a plugin to know whether the consumer app is running a development or production build.