Previous Topic: riskfortdataupload.iniNext Topic: Properties Files


udsserver.ini

The udsserver.ini file contains the parameters to set the User Data Service (UDS) log information. The following table provides information about parameters that you must configure for RiskMinder.

The common log-level values that can be set in this file are:

Book: See CA RiskMinder Administration Guide for more information about the log levels.

Parameter

Default Value

Description

log4j.rootCategory

ERROR, debuglog

The root logger that resides at the top of the logger hierarchy. All children loggers inherit this value, if no value is specified.

log4j.logger.com.arcot.euds

INFO

 

The log level that must be used to write the UDS information.

log4j.logger.com.arcot.crypto.impl.
SecureStoreUtil

INFO

The log level that must be used to write the logs, if you are using a hardware-based or software-based HSM.

log4j.logger.com.arcot.common.database

INFO

 

The log level that must be used to write the database information.

log4j.logger.com.arcot.common.cache

INFO

The log level that must be used to write the UDS cache information.

log4j.appender.debuglog

org.apache.log4j.RollingFileAppender

The name of the UDS log handle that specifies the mode in which the log file is opened and the offset pointer where the next operation will begin.

log4j.appender.debuglog.File

${arcot.home} /logs/arcotuds.log

The log file name and the location where the UDS logs will be created.

By default, the UDS log file name is arcotuds.log and is created in the following location:

<install_location>\Arcot Systems\logs\

 

log4j.appender.debuglog.MaxFileSize

10MB

The maximum allowed file size of the log file.

log4j.appender.debuglog.MaxBackupIndex

100

The maximum number of backup files that can be created. When the number of backup files reaches this number, then the application starts to overwrite from the first log file.

log4j.appender.debuglog.layout

org.apache.log4j.
PatternLayout

The output format, as specified by the ConversionPattern parameter.

log4j.appender.debuglog.Encoding

UTF-8

The encoding to use when writing the entries in the log file.

log4j.appender.debuglog.layout.
ConversionPattern

%d{yyyy-MM-dd HH:mm:ss,SSS z} : [%t] : %-5p : %-5c{3} : %m%n

The format in which the UDS log file entries are written:

  • Time Stamp (%d{yyyy-MM-dd HH:mm:ss,SSS z} :)
  • Thread ID ([%t] :)
  • Log Level (or Severity) (%-5p :)
  • Logger Class (%-5c{3} :)
  • Message (%m%n)

    Note: This pattern is similar to the C language printf function.