* fixed some log messages that still had color in them. That doesn't belong in the...
[citadel.git] / citadel / modules / wiki / serv_wiki.c
index 73c9151aa8b9d13f822889cd9ef52b492d939d3e..ddd1c32fc32f27199509fe447f924a719807aac6 100644 (file)
@@ -575,7 +575,7 @@ void wiki_rev(char *pagename, char *rev, char *operation)
                        fseek(fp, 0L, SEEK_SET);
                        msg->cm_fields['M'] = malloc(len + 1);
                        rv = fread(msg->cm_fields['M'], len, 1, fp);
-                       CtdlLogPrintf(CTDL_DEBUG, "\033[32mdid %d blocks of %d bytes\033[0m\n", rv, len);
+                       CtdlLogPrintf(CTDL_DEBUG, "did %d blocks of %d bytes\n", rv, len);
                        msg->cm_fields['M'][len] = 0;
                        fclose(fp);
                }