enableDisableDebugging(what)
Last updated September 21, 2004
Version: 1 | Requires: ColdFusion MX | 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:
#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
Shawn Porter added
DeMoronize
3 hour(s) ago
Chris Carey added
readPropertiesFi...
1 day(s) ago
Randy Johnson added
lastDayofWeek
3 day(s) ago
Frank Marion added
sitemapPing
7 day(s) ago
Top Rated
QuickSort
Rated 5.0, 3 time(s)
indentXml
Rated 5.0, 3 time(s)
queryColumnsToSt...
Rated 5.0, 3 time(s)
generateSsccAsn
Rated 5.0, 3 time(s)