serv_expire: remove two TRACE directives I left in there by accident
authorArt Cancro <ajc@citadel.org>
Fri, 8 Sep 2023 22:59:00 +0000 (18:59 -0400)
committerArt Cancro <ajc@citadel.org>
Fri, 8 Sep 2023 22:59:00 +0000 (18:59 -0400)
citadel/server/modules/expire/serv_expire.c

index 657cfd0d9acf9f05ac1cae37d64ba43541ce8dfe..fe4b60b4a20375610c7d1b60954bae7e4dce4221 100644 (file)
@@ -121,7 +121,6 @@ void GatherPurgeMessages(struct ctdlroom *qrbuf, void *data) {
 
        // If the room is set to expire by count, do that.
        if (epbuf.expire_mode == EXPIRE_NUMMSGS) {
-               TRACE;
                if (num_msgs > epbuf.expire_value) {
                        for (a=0; a<(num_msgs - epbuf.expire_value); ++a) {
                                fprintf(purgelist, "m=%ld\n", msglist[a]);
@@ -132,7 +131,6 @@ void GatherPurgeMessages(struct ctdlroom *qrbuf, void *data) {
 
        // If the room is set to expire by age...
        if (epbuf.expire_mode == EXPIRE_AGE) {
-               TRACE;
                for (a=0; a<num_msgs; ++a) {
                        delnum = msglist[a];
                        msg = CtdlFetchMessage(delnum, 0);      // don't need the body