I am using curl to automate AEM package manager, but I would like to see the actual progress. What I am seeing in /crx/packmgr/index.jsp in the window on the lower right.
So for example if I build or install a large package, curls progress only shows me that it's still busy/waiting, but not what is actually going on.
I would like to see the log output like
Building package
A META-INF
A META-INF/MANIFEST.MF
A META-INF/vault
A META-INF/vault/config.xml
A META-INF/vault/filter.xml
A META-INF/vault/nodetypes.cnd
A META-INF/vault/properties.xml
A /.content.xml
A /content
A /content/.content.xml
...
Package built in 407377ms.
If there a way to get this info for the POST request
curl -u admin:admin -X POST
'http://localhost:4502/crx/packmgr/service/.json/etc/packages/my_packages
/allmycontent-1.0.zip?cmd=build'
or can I get some other url to see the activity log?