]> code.citadel.org Git - citadel.git/blobdiff - citadel/dynloader.c
* Remove some trace messages
[citadel.git] / citadel / dynloader.c
index 043dcd187321c104a563a7647e86801bad5ae508..c1e3c64b3d60e42395f9f11c3301eff2372a6756 100644 (file)
@@ -551,16 +551,11 @@ void PerformSessionHooks(int EventType)
 {
        struct SessionFunctionHook *fcn;
 
-       TRACE;
        for (fcn = SessionHookTable; fcn != NULL; fcn = fcn->next) {
-               TRACE;
                if (fcn->eventtype == EventType) {
-                       TRACE;
                        (*fcn->h_function_pointer) ();
                }
-               TRACE;
        }
-       TRACE;
 }
 
 void PerformLogHooks(int loglevel, char *logmsg)