remove debug line

This commit is contained in:
GEEKiDoS
2024-01-08 20:38:56 +08:00
parent 66f4f891d6
commit e14f16c4d9
-1
View File
@@ -9,7 +9,6 @@ export function kxml(templatePath: string, encoding: 'UTF-8' | 'SHIFT_JIS' = 'UT
descriptor.value = async function (...args: any[]) {
const obj = await orig.apply(this, args);
const xml = `<?xml version="1.0" encoding="${encoding}"?>` + template(obj);
console.log(xml);
const kxml = to_bin(xml);
return Buffer.from(kxml.data);