This is an automated email from the ASF dual-hosted git repository.
dweiss pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new e0c9f1d Revert to use print. I actually thought this was some sort of
quick-and-dirty debugging code, not something used externally... Sorry.
e0c9f1d is described below
commit e0c9f1d80f889b71d2893d0b91abbf7350be9639
Author: Dawid Weiss <[email protected]>
AuthorDate: Fri Aug 27 18:41:27 2021 +0200
Revert to use print. I actually thought this was some sort of
quick-and-dirty debugging code, not something used externally... Sorry.
---
solr/benchmark/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/solr/benchmark/build.gradle b/solr/benchmark/build.gradle
index 2b2c964..bf6c9a3 100644
--- a/solr/benchmark/build.gradle
+++ b/solr/benchmark/build.gradle
@@ -39,7 +39,7 @@ jmhReport {
task echoCp {
doLast {
- logger.lifecycle((sourceSets.main.runtimeClasspath +
sourceSets.main.resources).asPath)
+ print "${(sourceSets.main.runtimeClasspath +
sourceSets.main.resources).asPath}"
}
}