add load complete message

This commit is contained in:
buzz-lightsnack-2007 2024-05-02 09:40:29 +08:00
parent f4821010b0
commit e944977cb7
2 changed files with 4 additions and 1 deletions

View file

@ -25,7 +25,7 @@ export default class watch {
document.onreadystatechange = async () => {
if (document.readyState == 'complete' && await global.read([`settings`, `behavior`, `autoRun`])) {
console.log(`Loading complete, processing…`);
new logging((new texts(`scrape_msg_ready`)).localized);
let PROC = new processor(filter);
}
};