Setting Up Log Level

When you run a process in TIBCO Business Studio™, the runtime logs are displayed in the Console view. You can set up the log level before running a process.

Procedure

  1. Navigate to the TIBCO_HOME\bw\6.4\config\design\logback directory and open the logback.xml file.
    Note: When deploying the application in TIBCO® Enterprise Administrator, you need to navigate to the TIBCO_HOME\bw\domains\mydomain\appnodes\myspace\mynode directory to find the logback.xml file.
  2. Add the following node to specify the log level for the HL7 Palette activities.
    <logger name="com.tibco.bw.palette.hl7">
       <level value="Error"/>
    </logger>

    The level tag defines the log level and the value can be Error or Debug.

  3. Add the following node to specify the log level for the FHIR Palette activities.
    <logger name="com.tibco.bw.palette.fhir">
       <level value="Error"/>
     </logger>

    The level tag defines the log level and the value can be ERROR, DEBUG, INFOR, or TRACE.

  4. Save the file.