Github user neykov commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/421#discussion_r87215451
--- Diff:
launcher-common/src/main/java/org/apache/brooklyn/launcher/common/BasicLauncher.java
---
@@ -724,6 +725,15 @@ protected void startApps() {
try {
LOG.info("Starting brooklyn application {} in
location{} {}", new Object[] { app, locations.size()!=1?"s":"", locations });
((Startable)app).start(locations);
+ Entities.dumpInfo(app);
+ String sensors = "";
+ if
(app.getAttribute(Attributes.MAIN_URI_MAPPED_PUBLIC)!=null) {
+ sensors = ":
"+app.getAttribute(Attributes.MAIN_URI_MAPPED_PUBLIC);
+ } else if
(app.getAttribute(Attributes.MAIN_URI)!=null) {
+ sensors += ":
"+app.getAttribute(Attributes.MAIN_URI);
+ }
+ LOG.info("Started brooklyn application {} in
location{} {}{}", new Object[] { app, locations.size()!=1?"s":"", locations,
+ sensors });
--- End diff --
I thought this is executed in classic mode only, no? How is the app passed
to the osgi launcher?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---