This documentation applies to the 8.1 version of Remedy Action Request System, which is in "End of Version Support."

To view the latest version, select the version from the Product version menu.

Enabling server-side AR System logs

When investigating an AR System plug-in issue, it helps to enable all relevant logs to capture concurrent activity during testing. These logs might not be required in all cases, but the practice of enabling them during the first test saves the effort of generating new logs if they are required. An exception to this guideline is the case where the AR System Server or the plug-in server must be restarted to enable additional logging. Restarting the AR System server or the plug-in server might impact users who are using the server, so this impact needs to be considered to minimize the impact on users.

Enable the following logs to capture more information about calls to the plug-in. The following logs can be enabled without restarting AR System or the plug-in server:

  • API and SQL log, pointing to the same file
  • Filter log, pointing to a different file
  • Plug-in logging at Debug level, pointing to a different file

Because these logs can grow large, disable them after capturing the issue. The plug-in server logs are enabled and are written to the file specified in the <ARInstallationFolder>/pluginsvr/log4j_pluginsvr.xml file. By default, the logging level is set to Warn, which is the least verbose logging level. Use the following steps to increase the log levels of the plug-in server log.

To increase the Java plug-in server log levels

  1. Open the <ARInstallationFolder>/pluginsvr/log4j_pluginsvr.xml file for editing.
  2. Change the log level value from warn to debug for the specific plug-in.
    For example, change the following lines in the log4j_pluginsvr.xmlfile for CAI plug-in:

    <logger additivity="true" name="com.bmc.itsm.cai.filterapi.cai">
        <level value="warn"/>
      </logger>
    

    to

    <logger additivity="true" name="com.bmc.itsm.cai.filterapi.cai">
        <level value="debug"/>
      </logger>
    
  3. Restart the AR System server.
    For information about how to restart the Java plug-in server without restarting the AR System server, see Knowledge Base article ID KA402816.

By default, the arjavaplugin.log file located in the <ARInstallationFolder>\Arserver\Db folder logs the debug messages for the plug-in. You can, however, edit the log4j_pluginsvr.xml file and manually edit the log file path and name, maximum log file size, and the number of backup files to keep. For example, search for the section that begins with <appender class="org.apache.log4j.RollingFileAppender" name="PluginLog">. For example:

<appender class="org.apache.log4j.RollingFileAppender" name="PluginLog">
    <param name="File" value="C:/BMC Software/ARSystem/ARServer/Db/arjavaplugin.log"/>	
    <param name="MaxFileSize" value="5MB"/>
    <!-- Keep two backups -->
    <param name="MaxBackupIndex" value="10"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p [%t] %C (%F:%L) - %m%n"/>
    </layout>	    
</appender>

Manually change the file name, maximum log file size, and number of backup files as follows:

<appender class="org.apache.log4j.RollingFileAppender" name="PluginLog">
    <param name="File" value="D:/TEMP/arjavaplugin.log"/>	
    <param name="MaxFileSize" value="100MB"/>
    <!-- Keep two backups -->
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p [%t] %C (%F:%L) - %m%n"/>
    </layout>	    
</appender>

Related topics

Running the plug-in server
Setting log files options

This version of the documentation is no longer supported. However, the documentation is available for your convenience. You will not be able to leave comments.

Comments

  1. Marcell Alzate

    From above: "For information about how to restart the Java plug-in server without restarting the AR System server, see Knowledge Base article ID KA402816."

    Such article/link isn't longer valid.

    What I'd found so far:

    From BMC: Restarting the plug-in server using the Set Server Info command

    From BMC community: Restart Plugin server without a Remedy server restart

    Sep 08, 2017 03:02
    1. Michael Fahrenbruch

      Hi Marcell, 

      Thanks for the post concerning the KA link. Here is the working url for the Legacy KA Article ID:KA402816:

      ARTICLE NUMBER 000091732

      Regards, 

      Mike Fahrenbruch

      BMC Support

      Sep 09, 2017 12:18