We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e681b17 commit 6171a5eCopy full SHA for 6171a5e
src/generate/validator.js
@@ -74,7 +74,6 @@ function analyzeFiles(json) {
74
let result = {};
75
76
for (let repo of json) {
77
- console.log("Analyze " + repo);
78
result[repo] = {};
79
let cwd = workdir + repo;
80
let dotabap = null;
@@ -172,7 +171,6 @@ function parse(result) {
172
171
let files = listFiles(workdir + repo + result[repo].startingFolder, result[repo].ignoreFiles);
173
174
for (let file of files) {
175
- console.log(file.name);
176
const buf = fs.readFileSync(file.path + file.name, "utf8");
177
afiles.push(new abaplint.MemoryFile(file.name, buf));
178
}
0 commit comments