Skip to content

Commit

Permalink
Removed old console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
aidant19 committed Jan 11, 2024
1 parent d5b3494 commit 1d1e26a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions scripts/ajexport.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ global Project, loadModelFile, AnimatedJava

const { readdirSync, readFileSync } = require('fs');

const consoleLogJson = (args) => {
console.log(JSON.stringify(args));
};

if (typeof AnimatedJava === 'undefined') {
throw new Error('Failed to load Animated Java plugin before CLI plugin');
Expand All @@ -28,7 +25,6 @@ const exportNextFile = () => {
if (typeof file === 'undefined') {
return;
}
consoleLogJson({ file });
if (file.includes('ajmodel')) {
const content = readFileSync(modelDir.concat(file), 'utf-8');
const name = file.split('/').pop();
Expand Down

0 comments on commit 1d1e26a

Please sign in to comment.