enableDisableDebugging(what)
Last updated September 21, 2004
Version: 1 | Requires: CF6 | Library: UtilityLib
Description:
This UDF will enable or disable debugging service based on the argument provided. I is useful in situation where you do not have access to ColdFusion Administrator or want to manipulate debugging settings programatically.
Return Values:
Returns nothing.
Example:
<cfoutput>
#enableDisableDebugging('disable')#
#enableDisableDebugging('enable')#
</cfoutput>
Parameters:
Name | Description | Required |
---|---|---|
what | Either enable or disable. | Yes |
Full UDF Source:
<!---
This UDF will enable or disable debugging service with Admin access
@param what Either enable or disable. (Required)
@return Returns nothing.
@author Qasim Rasheed (qasim_1976@yahoo.com)
@version 1, April 14, 2005
--->
<cffunction name="enableDisableDebugging" output="false" returntype="void" hint="I enable/disable debugging settings">
<cfargument name="what" type="string" required="true" />
<cfset var db_service = createobject("java","coldfusion.server.ServiceFactory").getDebuggingService()>
<cfif arguments.what eq "enable">
<cfif not db_service.isEnabled()>
<cfset db_service.setEnabled(true)>
</cfif>
<cfelseif arguments.what eq "disable">
<cfif db_service.isEnabled()>
<cfset db_service.setEnabled(false)>
</cfif>
</cfif>
</cffunction>
Search CFLib.org
Latest Additions
Raymond Camden added
QueryDeleteRows
November 04, 2017
Leigh added
nullPad
May 11, 2016
Raymond Camden added
stripHTML
May 10, 2016
Kevin Cotton added
date2ExcelDate
May 05, 2016
Raymond Camden added
CapFirst
April 25, 2016