remove log

This commit is contained in:
MathMan05 2024-12-25 19:54:59 -06:00
parent 509c819d0e
commit 16d6512948

View file

@ -52,7 +52,6 @@ async function combinePath(path: string, tryAgain = true): Promise<string> {
} else {
const str = await combinePath(path + ".html", false);
if (str !== __dirname + "/webpage/index.html") {
console.log(str);
return str;
}
if (devmode && tryAgain) {