Guide to the LiveAPI System - The set_debug() Method

Description

The set_debug() method sets the amount of debug information to store in LiveAPI's debug log file.

  • By default, LiveAPI environments log debugging data to the /home/user/.cpanel/LiveAPI.log.rand file, where user is the cPanel account's username, and rand is a random string that cPanel & WHM generates.

Example


LiveAPI PHP Class

1
2
// Turn off logging to the debug error log.
$cpliveapi->set_debug('0');



LiveAPI Perl Module

1
2
# Turn off logging to the debug error log.
$cpliveapi->set_debug('0');




Parameters

Parameter

Type

Description

Possible values

Example

 debug_level 

 integer 

 The debug log's setting. 

  • 0 — The LiveAPI system does not log error messages.
  • Any other integer value — The LiveAPI system logs any error messages that have a level value that is greater than or equal to this value.

1

 

Returns

This method returns a boolean value that indicates success or failure:

  • 1 — Success.
  • 0 — Failure.
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

The cPanel Interface

For  cPanel  &  WHM  version  58 Overview The cPanel interface is...

User Preferences

For cPanel & WHM version 58 Overview This document outlines how to access your cPanel...

Manage External Authentications

For cPanel & WHM version 58 Overview Manage credentials Additional documentation...

What is cPanelID?

In This Article:  Overview ServicesHow to get a cPanelID cPanelID External...

Guide to cPanel Interface Customization - cPanel Style Development

Introduction You can develop custom styles that modify the appearance of the cPanel interface....