VMware Cloud Community
CalmCloud
Enthusiast
Enthusiast

VCO Plugin SolarSystem log messages

Hi,

I want to understand how plugin works. I have put few log messages in createPluginFactory.function of SolarSystemAdapter class. The plugin is deployed fine. Where are these log messages? I have tried different variations but none of them are getting logged in any log files under C:\Program Files\VMware\Orchestrator\app-server\logs

log.info("info:createPluginFactory");

log.debug("debug:createPluginFactory");

log.warn("warn:createPluginFactory");

log.error("error:createPluginFactory");

System.out("createPluginFactory");

Thanks,

Reply
0 Kudos
1 Reply
iiliev
VMware Employee
VMware Employee

Hi,

Log messages go to server.log log file. I suppose you are not seeing your log messages simply because you haven't performed any operation that involves creation of plug-in factory. Plug-in factories are lazily created when needed and cached.

Perhaps one of the easiest way to make sure plug-in factory is created and your messages are logged is to create a workflow, add an input parameter of type some of the types defined in this plug-in, start the workflow presentation, open input parameter object chooser and select an object. Or browse plug-in inventory in the vCO Java client.

Reply
0 Kudos