Remove extra console error that shouldn't be needed anymore

This commit is contained in:
Jonathan Tran
2025-04-18 17:23:54 -04:00
parent 83220a7255
commit 4a5ef17c92

View File

@ -217,8 +217,6 @@ export const parse = (code: string | Error): ParseResult | Error => {
let errs = splitErrors(parsed[1])
return new ParseResult(parsed[0], errs.errors, errs.warnings)
} catch (e: any) {
// throw e
console.error(e.toString())
const parsed: RustKclError = parseJson(e.toString())
return new KCLError(
parsed.kind,