meilisearch / scrapix

MIT License
23 stars 9 forks source link

Improve errors logs #34

Open bidoubiwa opened 1 year ago

bidoubiwa commented 1 year ago

In most of the places were errors are silently ignored, a console.log compensate with some information on it. These are not always very clear.

Exemple in Senders.ts where it is not clear that there was no tmp index to delete.

catch (e) {
 console.log("try to delete a tmp index if it exists");
}