Setting the Log Level

Set the log level for AppBuilder.

  1. Navigate to <AppBuilder_Home>\ares-project\ and open the ide.json file with a text editor.
  2. Edit the log level in the file.
    "log": {
    		"enabled": "true",
    		"level": "INFO",
    		"size": 500000,
    		"backup": 5
    Supported log priority levels include:
    ALL: new Level(Number.MIN_VALUE, "ALL")
      , INFO: new Level(20000, "INFO")
      , WARN: new Level(30000, "WARN")
      , ERROR: new Level(40000, "ERROR")
      , OFF: new Level(Number.MAX_VALUE, "OFF")
      };
  3. Save the file.
    When you review the appbuilder.log file, only information designated within the specified log priority levels will be displayed.
Related tasks
Clearing the Logging Information
Specifying Log Backup Information