* Removed the extra log message now that the bug is fixed
authorArt Cancro <ajc@citadel.org>
Wed, 13 Jan 2010 04:50:31 +0000 (04:50 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 13 Jan 2010 04:50:31 +0000 (04:50 +0000)
citadel/modules/network/serv_network.c

index d73e4b7e1e13f3e67b528240860aff15f05adffa..c900731ed582ee8646edf1bde0006068c62ffa69 100644 (file)
@@ -4,7 +4,7 @@
  * This module handles shared rooms, inter-Citadel mail, and outbound
  * mailing list processing.
  *
- * Copyright (c) 2000-2009 by the citadel.org team
+ * Copyright (c) 2000-2010 by the citadel.org team
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -1645,8 +1645,6 @@ void network_process_message(FILE *fp, long msgstart, long msgend) {
        long size;
        char *buffer;
 
-       CtdlLogPrintf(CTDL_DEBUG, "network_process_message() processing bytes %ld through %ld\n", msgstart, msgend);
-
        hold_pos = ftell(fp);
        size = msgend - msgstart + 1;
        buffer = malloc(size);