Remove stray debug output

This commit is contained in:
Simon Hausmann 2020-11-03 10:14:56 +01:00
parent e3880d6aff
commit fa077662c1

View file

@ -189,7 +189,6 @@ async function render_or_error(source: string, base_url: string, div: HTMLDivEle
let u = new URL(file_name, base_url);
return u.toString();
}, async (url: string): Promise<string> => {
console.log("ERR", url);
let model_and_state = editor_documents.get(url);
if (model_and_state === undefined) {
const response = await fetch(url);