Enable debugging

In order to track own issues with the registrar module, you can enable debugging as follow.

Enable logs in ClientExec

Learn more on ClientExec debugging

Enable logs in the module

In order to enable module logs, edit the module configuration file netim.inc.php in the module directory to set the variables below:

  • $netim_debug
    If set to true, an entry in the logs will be created for each new function called in the module with its parameters (in the request) and its return (in the response).
    So, it is possible to know which parameters were given by ClientExec to the module as well as what the module returned to ClientExec for a particular function call.
  • $netim_api_debug
    If set to true, an entry in the logs will be created for every API call with its parameters (in the request) and its result (in the response).
    So, it is possible to track all communications between the module and Netim through the API.
  • $netim_check_debug
    If set to true, an entry in the logs will be created for every domain availability search.