show error message seperately
This commit is contained in:
parent
8beeb107f7
commit
73d17a9dc0
1 changed files with 12 additions and 8 deletions
20
scripts/external/processor.js
vendored
20
scripts/external/processor.js
vendored
|
@ -67,6 +67,14 @@ export default class processor {
|
||||||
// Try analysis of the data.
|
// Try analysis of the data.
|
||||||
try {
|
try {
|
||||||
await perform();
|
await perform();
|
||||||
|
|
||||||
|
// Indicate that the process is done.
|
||||||
|
this.#notify(1);
|
||||||
|
// Display the results.
|
||||||
|
new logging(texts.localized(`AI_message_title_done`), JSON.stringify(this.product.analysis));
|
||||||
|
|
||||||
|
// Save the data.
|
||||||
|
this.product.save();
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
// Use the existing error, if any exists.
|
// Use the existing error, if any exists.
|
||||||
(this.status.error) ? false :
|
(this.status.error) ? false :
|
||||||
|
@ -75,14 +83,8 @@ export default class processor {
|
||||||
});
|
});
|
||||||
|
|
||||||
// Display the error.
|
// Display the error.
|
||||||
logging.error(err);
|
this.#notify(-1);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Indicate that the process is done.
|
|
||||||
this.#notify(1);
|
|
||||||
|
|
||||||
// Save the data.
|
|
||||||
this.product.save();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const wait = async () => {
|
const wait = async () => {
|
||||||
|
@ -132,13 +134,15 @@ export default class processor {
|
||||||
this.status[`done`] = status;
|
this.status[`done`] = status;
|
||||||
|
|
||||||
// Set the status of the site.
|
// Set the status of the site.
|
||||||
if (await global.write([`sites`, this.URL, `status`], this.status, -1)) {
|
if ((await global.write([`sites`, this.URL, `status`], this.status, -1)) && (this.status[`done`] >= 0)) {
|
||||||
// Set the status to its whole number counterpart.
|
// Set the status to its whole number counterpart.
|
||||||
let STATUS = Math.round(status * 100);
|
let STATUS = Math.round(status * 100);
|
||||||
|
|
||||||
// Get the corresponding status message.
|
// Get the corresponding status message.
|
||||||
new logging(texts.localized(`scrape_msg_`.concat(String(STATUS))), (String(STATUS)).concat("%"));
|
new logging(texts.localized(`scrape_msg_`.concat(String(STATUS))), (String(STATUS)).concat("%"));
|
||||||
return true;
|
return true;
|
||||||
|
} else if (this.status[`done`] < 0) {
|
||||||
|
logging.error(this.status.error);
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue