We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cec78e commit b31d280Copy full SHA for b31d280
1 file changed
dd-java-agent/instrumentation/sofarpc/sofarpc-5.0/build.gradle
@@ -39,6 +39,11 @@ tasks.named('compileLatestDepTestGroovy') {
39
println "=== DEBUG latestDepTestCompileClasspath ==="
40
classpath.files.findAll { it.name.contains('sofa') }.each { f ->
41
println " sofa artifact: ${f.name} exists=${f.exists()} size=${f.exists() ? f.size() : 'MISSING'}"
42
+ if (f.exists() && f.size() < 1_000_000) {
43
+ def bytes = f.bytes.take(256)
44
+ println " first bytes (hex): ${bytes.encodeHex()}"
45
+ println " first bytes (text): ${new String(bytes).replaceAll('[\\x00-\\x1f\\x7f-\\xff]', '.')}"
46
+ }
47
}
48
println "=== END DEBUG ==="
49
0 commit comments