Managing Logs in Console

The plug-in logs are written to Console by default.

If neither the plug-in log or the BusinessWorks log is configured in the logback.xml file, the error logs of the plug-in will be displayed in Console.

If the plug-in log is not configured but the BusinessWorks log is configured in the logback.xml file, the configuration for BusinessWorks log is implemented by the plug-in.

Procedure

  1. Navigate to the TIBCO_HOME\bw\6.1\config\design\logback directory and open the logback.xml file.
  2. Add the following nodes in the Console Appender area to specify the plug-in log.
    <logger name="com.tibco.bw.palette.hadoop">
        <level value="DEBUG"/>
      </logger>
    <logger name="com.tibco.bw.palette.webhdfs">
        <level value="DEBUG"/>
      </logger>
    <logger name="com.tibco.bw.sharedresource.webhdfs">
        <level value="DEBUG"/>
      </logger>
    
    <logger name="com.tibco.bw.sharedresource.hadoop">
        <level value="DEBUG"/>
      </logger>
    

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

    Note: If you want to check the activity output in Console, you need to set level to Debug.
  3. Save the file.