Add test logs for VS Code debugging

This commit is contained in:
Jonas Bengtsson
2020-01-03 21:18:10 +01:00
parent fffea1827d
commit 017a464bce
3 changed files with 130 additions and 0 deletions

19
test.js Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env node
const absoluteFilename = __filename;
const relativeFilename = __filename.replace(`${__dirname}/`, '');
// android-lint-file
console.log(`${absoluteFilename}: Warning: checkClientTrusted is empty, which could cause insecure network traffic due to trusting arbitrary TLS/SSL certificates presented by peers [TrustAllX509TrustManager]`);
// android-lint-line
console.log(`${absoluteFilename}:9: Warning: A newer version of androidx.core:core-ktx than 1.2.0-beta01 is available: 1.2.0-rc01 [GradleDependency]`);
// gradle
console.log(`warning unused-exclude-by-conf the exclude dependency is not in your dependency graph, so has no effect
${relativeFilename}:12`);
// kotlin-error
console.log(`e: ${absoluteFilename}: (16, 13): Val cannot be reassigned`);
// kotlin-warning
console.log(`w: ${absoluteFilename}: (19, 13): Parameter 'foo' is never used`);