Fabric Studio Log Files

Fabric Studio enables you to develop, test and monitor projects within the Studio using Fabric’s test and log capabilities.

To display a list of recent messages from the server, click image Server / Activity Logs (left menu). By default, this window only displays warnings and error messages, however additional messages and notices can also be reviewed.

The following are the main log options:

  • Server logs.
  • Activity logs.
  • Compilation errors.

Click for more information about UI Components and Menus.

How do I Review Server / Activity Logs and Compilation Errors?

Server Logs

  1. Click image Server Logs and then click either Errors, Warnings or Messages to display the relevant server logs list.

image

  1. Right click in the Log’s list area to display the following context menu options:
    • Select Open Selected Items Data in Notepad, to review the entire error or notification message.
    • Select Copy Selected Items Data, to copy the entire text onto the clipboard.
    • Clear List to remove the listed logs. Clear list can also be accessed by clicking the Clear List icon (top pane).

Activity Logs

  1. Click image Activity Logs to open the Activity Logs window.

image

  1. Follow Step 2 to select and review the log.

Compilation Errors

  1. Click image Compilation Errors to open the following window.

image

  1. Follow Step 2 to select and review the log.

Output

  1. Click image Output to open the following window where you can review the K2Fabric log:

image

Debugging Logs and Messages

Logs and messages can also be used for debugging purposes. The log.info () method is available to enable Fabric’s runtime Debug options. This method can be added to any Java code and its output can be viewed after deployment and during runtime.

For example, see the fnCreateInstID function under Customer LU in the demo project:

if (i_id!=null && !i_id.isEmpty()){
// Increase the input by 10 and return
   log.info("o_id: "(Integer.sum(Integer.valueOf(i_id),10)+""));
    return Integer.sum(Integer.valueOf(i_id),10)+"";
}
return "0";

The runtime log (k2fabric.log) can be reviewed in the Fabric Server’s Logs directory or in the Studio’s Output logs.

image

Previous

Fabric Studio Log Files

Fabric Studio enables you to develop, test and monitor projects within the Studio using Fabric’s test and log capabilities.

To display a list of recent messages from the server, click image Server / Activity Logs (left menu). By default, this window only displays warnings and error messages, however additional messages and notices can also be reviewed.

The following are the main log options:

  • Server logs.
  • Activity logs.
  • Compilation errors.

Click for more information about UI Components and Menus.

How do I Review Server / Activity Logs and Compilation Errors?

Server Logs

  1. Click image Server Logs and then click either Errors, Warnings or Messages to display the relevant server logs list.

image

  1. Right click in the Log’s list area to display the following context menu options:
    • Select Open Selected Items Data in Notepad, to review the entire error or notification message.
    • Select Copy Selected Items Data, to copy the entire text onto the clipboard.
    • Clear List to remove the listed logs. Clear list can also be accessed by clicking the Clear List icon (top pane).

Activity Logs

  1. Click image Activity Logs to open the Activity Logs window.

image

  1. Follow Step 2 to select and review the log.

Compilation Errors

  1. Click image Compilation Errors to open the following window.

image

  1. Follow Step 2 to select and review the log.

Output

  1. Click image Output to open the following window where you can review the K2Fabric log:

image

Debugging Logs and Messages

Logs and messages can also be used for debugging purposes. The log.info () method is available to enable Fabric’s runtime Debug options. This method can be added to any Java code and its output can be viewed after deployment and during runtime.

For example, see the fnCreateInstID function under Customer LU in the demo project:

if (i_id!=null && !i_id.isEmpty()){
// Increase the input by 10 and return
   log.info("o_id: "(Integer.sum(Integer.valueOf(i_id),10)+""));
    return Integer.sum(Integer.valueOf(i_id),10)+"";
}
return "0";

The runtime log (k2fabric.log) can be reviewed in the Fabric Server’s Logs directory or in the Studio’s Output logs.

image

Previous