|
NameOpenXPKI::Debug - central debugging class of OpenXPKI.DescriptionThis is the central debugging module of OpenXPKI. If you write a new module then you can include it by simply making an appropriate use statement:use OpenXPKI::Debug; It is not necessary to remove this line if you don't debug your code. The activation of the debugging statements is handled by some static variables of the debug module. If you want to debug your code then you have to do the following.
FunctionsimportExecuted if you "use" or "require" this module in another module. Checks if debugging is activated for the calling module and decides whether a source filter has to be applied or not.filterImplements the source filtering.This function will only be used if the debugging was activated by the import function. Please see Filter::Util::Call for more details. debugBuild the debug message. Also output debug level, module name and source code line.__censor_msgCensor debug messages that potentially contain confidential information such as passwords or private keys.__level_to_bitmaskConverts a maximum debug level to a bitmask. The bitmask will be the minimum value that includes the given level and where all bits are set.7 => 111 (7) 8 => 1111 (15) 12 => 1111 (15) See alsoFilter::Util::Call
Visit the GSP FreeBSD Man Page Interface. |