This message was deleted.
# performance
s
This message was deleted.
👀 1
n
You can check this:
Copy code
DaemonScanInfo dsi = ((GradleInternal) gradle).getServices().get(DaemonScanInfo.class);
=> dsi.getNumberOfBuilds()
note:
DaemonScanInfo
is not available on a non daemon build, so you need to do a
serviceRegistry#find
before the #get, or protect against the failed lookup
g
Thanks! 💯