Symantec IGA

 View Only
Expand all | Collapse all

Setting debug log for STDOUT in Identity Governance 14.1

  • 1.  Setting debug log for STDOUT in Identity Governance 14.1

    Posted Nov 14, 2017 07:20 PM

    How do I set log level for STDOUT in Identity Governance 14.1. I cant find STDOUT at all in Administration->Log .Settings. I am running a PDI custom executable script for Export connector and need to see all kettle messages but eurekify log doesnt show anything though I have set the the below to debug:

    com.eurekify.batch.connectors.exports and com.eurekify.batch.connectors.exports.impl 

    I want to set debug on stdout but dont find it.

     

    Any ideas ?

     

    Thank you,

    Rajya



  • 2.  Re: Setting debug log for STDOUT in Identity Governance 14.1
    Best Answer

    Posted Nov 17, 2017 03:56 PM

    Hello Rajya,

     

    In Identity Governance there is an option to change the logging level in <jboss_home>/standalone/configuration

     

    The folder will contain a logging.properties folder where you can modify these lines:

     

    logger.level=INFO
    logger.handlers=FILE,CONSOLE

    logger.com.businessobjects.sdk.biar.om.internal.level=OFF
    logger.com.businessobjects.sdk.biar.om.internal.useParentHandlers=true

    logger.com.eurekify.level=INFO
    logger.com.eurekify.useParentHandlers=true

     

    This might be what you are looking for and I recommend to change these line to DEBUG

    logger.level=INFO -> logger.level=DEBUG

     

    logger.com.eurekify.level=INFO -> logger.com.eurekify.level=DEBUG

     

     

    Regards,

    Andrew Nguyen



  • 3.  Re: Setting debug log for STDOUT in Identity Governance 14.1

    Posted Jan 18, 2018 11:53 AM

    Thank you !