diff --git a/src/lib/server/safePath.ts b/src/lib/server/safePath.ts index b7bb4e0..52dc095 100644 --- a/src/lib/server/safePath.ts +++ b/src/lib/server/safePath.ts @@ -8,8 +8,6 @@ export function safePath(pathIn: string, options: { base: string, noSubDir?: boo pathIn = path.join(base, pathIn); const normBase = path.normalize(base); const normPath = path.normalize(pathIn); - console.log(normBase); - console.log(normPath); if (normPath !== normBase && normPath.startsWith(normBase)) { if (options.noSubDir) {