CEIP.stopLog Member

Internal.

Syntax

object.stopLog();

Returns

Remarks

See Also

Source Code

function ceip_stoplog()
{
// Remove all of our hooks.
if ("beforeHooks" in client.commandManager) {
delete client.commandManager.beforeHooks["ceip"];
}
if ("afterHooks" in client.commandManager) {
delete client.commandManager.afterHooks["ceip"];
}
client.menuManager.onCallbackPopupShowing = null;
client.menuManager.onCallbackPopupHiding = null;
this.logEvent({type: "logger", event: "stop"});
this.enabled = false;
dd("CEIP: LOGGING STOP");
}