How to increase logging for Connector Xpress
search cancel

How to increase logging for Connector Xpress

book

Article ID: 272939

calendar_today

Updated On:

Products

CA Identity Manager

Issue/Introduction

We are trying to add more attribute to the one of ldap connector but, getting below error:

SEVERE: An internal error has occurred in Connector Xpress. Please report to CA.
java.lang.IllegalArgumentException

Both on screen and in the the conxp-log.txt log, how can we get more logging details from Connector Xpress

Environment

Release :  14.4, 14.5

Resolution

To Enable logging please follow the below steps:~\CA\Identity Manager\Connector Xpress\conf\logging.properties

It is recommended to create a backup of this properties file, for example, logging.properties.default

Then modify 

**************************************************************************************************************************************************
#
# Logging configuration for Connector Xpress
#handlers = java.util.logging.ConsoleHandler java.util.logging.FileHandler.level = ALL
java.util.logging.ConsoleHandler.level = ALL
java.util.logging.FileHandler.level = ALL
java.util.logging.FileHandler.pattern = ../logs/conxp-log.txt
java.util.logging.FileHandler.append = true
java.util.logging.FileHandler.limit = 0
java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
 
**************************************************************************************************************************************************
 
Set.level = ALL ,
and  java.util.logging.FileHandler.limit = 0  (unlimited)
 
 
This will take affect after restarting connector xpress.