Skip to content

Commit

Permalink
remove excess warning notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Izdat committed Nov 23, 2024
1 parent 38bd072 commit ef6104b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/routes/(app)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,6 @@
};
const reqLoadDoc = async (uuid: string, adapter: string) => {
console.warn('**** LOADING ', uuid, adapter);
Log.clearScriptLog();
debugStore.clear();
if (dsCurrentSession.unsavedChanges){
Expand Down Expand Up @@ -601,11 +600,8 @@
await waitForCanvas();
const urlDocUUID = decodeURIToUUID(urlParams.get('private'));
await reqLoadDoc(urlDocUUID, 'idb').catch(async (err_idb) => {
console.error('LOADERR - failed to locate IDB doc', err_idb);
console.warn('LOADING ', urlDocUUID, 'ls');
await reqLoadDoc(urlDocUUID, 'ls').catch (async (err_ls) => {
Log.toastError('failed to load script');
Log.error('LOADERR - failed to locate LS doc', err_ls);
});
});
} else {
Expand Down

0 comments on commit ef6104b

Please sign in to comment.