Loading TOC...

admin.appserverGetFileLogLevel

admin.appserverGetFileLogLevel(
   config as element(configuration),
   appserver-id as (Number|String)
) as String

Summary

This function returns the value for the file log level configured for a specified App Server.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
appserver-id The ID of the App Server. Typically, this is the result of an admin.appserverGetId call.

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  const config = admin.getConfiguration()
  const groupid = admin.groupGetId(config, "Default")
  admin.appserverGetFileLogLevel(config,
             admin.appserverGetId(config, groupid, "myAppServer"))

   //returns the file log level value 
  

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.