I have custom debug statements on the controller now which is not showing up on the debug log. I see the method getting executed and exited but i could not see anything on the debug log.
Edited to add Code Below:
<apex:component controller="Ctrl_PK_DisplayOptions" access="public" >
<apex:attribute name="group" assignTo="{!sLookupGroupCode}" type="String" required="true"
<apex:attribute name="mode" assignTo="{!ctr_mode}" type="String" required="true" />
<apex:attribute name="languageCode" assignTo="{!sLanguageCode}" type="String" required="true">
<apex:selectList value="{!output_property}" size="1" style="{!style}">
<apex:selectOptions value="{!lstOptions}" />
</apex:selectList>
</apex:component>
I have set the debug log filter for apex to debug, visual force to info and system to debug. Is there a reason why the debug log will not show any output even though it is executing the code?
Thanks
Buyan