$INSTALL_DIR\config
folder and enable a custom filter./
, regardless if it's Windows or Linux.
$INSTALL_DIR\config
folder.C:\Program Files\ESET\ESET Security\ecls.exe
. If this directory is different, modify line number 5 to the correct file.exitCode
parameter in ExternalTool.xml file.Add a custom filter for Profile_1.xml file with the following contents:
<customFilter> <className>com.synametrics.xeams.rulesengine.custom.ExternalTool</className> <weight>100</weight> <!-- assign a weight --> <enabled>true</enabled> <origin>1</origin> <lastModified>1066309746000</lastModified> <!-- represents the date this rule was added --> </customFilter>
To enable additional logging tools for ESET usage with Xeams, you will need to modify the contents of logconfig.xml
. This file is located in your main $INSTALL_DIR/ folder. Once you edit this file, you will notice there are two sections:
Each appender must have a corresponding category. The Appender specifies where the content is logged, such as the log name, size, and location, whereas the Category specifies what content is logged.
Appender<appender name="EXTERNAL_TOOL" class="org.apache.log4j.RollingFileAppender"> <param name="File" value="logs/ExternalTool.log" /> <param name="Append" value="true" /> <param name="MaxFileSize" value="5MB" /> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="%d %-5p %c{2} - %m%n"/> </layout> </appender>
<category name="ExternalTool" additivity="false"> <priority value="DEBUG" /> <appender-ref ref="EXTERNAL_TOOL"/> </category>Once modifying the file, save it, then restart Xeams. You should see the new log file show up in your $INSTALL_DIR/logs directory.