by jimcuclamath: use defines instead of numbers for logging; Change some loglevels...
authorWilfried Goesgens <dothebart@citadel.org>
Sun, 30 Jan 2011 11:12:44 +0000 (12:12 +0100)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 30 Jan 2011 11:12:44 +0000 (12:12 +0100)
citadel/citserver.c
citadel/database.c
citadel/ecrash.c
citadel/ical_dezonify.c
citadel/msgbase.c
citadel/serv_extensions.c
citadel/user_ops.c

index 93a02389fb06d367c75308e1e59fb72294e9a583..a8db75c6115cd0e5e4a32e093b3ec35d5ae7ee7e 100644 (file)
@@ -98,9 +98,9 @@ void cit_backtrace(void)
        strings = backtrace_symbols(stack_frames, size);
        for (i = 0; i < size; i++) {
                if (strings != NULL)
-                       CtdlLogPrintf(1, "%s\n", strings[i]);
+                       CtdlLogPrintf(CTDL_ALERT, "%s\n", strings[i]);
                else
-                       CtdlLogPrintf(1, "%p\n", stack_frames[i]);
+                       CtdlLogPrintf(CTDL_ALERT, "%p\n", stack_frames[i]);
        }
        free(strings);
 #endif
@@ -121,9 +121,9 @@ void cit_panic_backtrace(int SigNum)
        strings = backtrace_symbols(stack_frames, size);
        for (i = 0; i < size; i++) {
                if (strings != NULL)
-                       CtdlLogPrintf(1, "%s\n", strings[i]);
+                       CtdlLogPrintf(CTDL_ALERT, "%s\n", strings[i]);
                else
-                       CtdlLogPrintf(1, "%p\n", stack_frames[i]);
+                       CtdlLogPrintf(CTDL_ALERT, "%p\n", stack_frames[i]);
        }
        free(strings);
 #endif
index 95c69476e7e4be641a13ca4c3696f27e82845f5f..155910a2da5062fbed1cdf5f1f618aad63ad1e97 100644 (file)
@@ -427,10 +427,10 @@ void cdb_chmod_data(void) {
                        if (d->d_name[0] != '.') {
                                snprintf(filename, sizeof filename,
                                         "%s/%s", ctdl_data_dir, d->d_name);
-                               CtdlLogPrintf(9, "chmod(%s, 0600) returned %d\n",
+                               CtdlLogPrintf(CTDL_DEBUG, "chmod(%s, 0600) returned %d\n",
                                        filename, chmod(filename, 0600)
                                );
-                               CtdlLogPrintf(9, "chown(%s, CTDLUID, -1) returned %d\n",
+                               CtdlLogPrintf(CTDL_DEBUG, "chown(%s, CTDLUID, -1) returned %d\n",
                                        filename, chown(filename, CTDLUID, (-1))
                                );
                        }
index f93742a71fd137006f6b76aa99bca0ea50b2e5a5..ea75ea1cd65aa1da4c7b2126b3216b06bd28c00b 100644 (file)
@@ -216,7 +216,7 @@ static void createGlobalBacktrace( void )
                }
        else 
                for (NThread = 0; NThread < size; NThread++) 
-                       CtdlLogPrintf(1, "RAW: %p\n", stack_frames[NThread]);
+                       CtdlLogPrintf(CTDL_ALERT, "RAW: %p\n", stack_frames[NThread]);
        strings = backtrace_symbols(stack_frames, size);
        for (NThread = 0; NThread < size; NThread++) {
                if (strings != NULL) {
@@ -226,7 +226,7 @@ static void createGlobalBacktrace( void )
                                syslog( LOG_CRIT|LOG_NDELAY|LOG_MAIL, StaticBuf);
                        }
                        else
-                               CtdlLogPrintf(1, "%s\n", strings[NThread]);
+                               CtdlLogPrintf(CTDL_ALERT, "%s\n", strings[NThread]);
                }
        }
 } /* createGlobalBacktrace */
@@ -242,7 +242,7 @@ static void outputRawtrace( void )
                }
        else 
                for (NThread = 0; NThread < size; NThread++) 
-                       CtdlLogPrintf(1, "RAW: %p\n", stack_frames[NThread]);
+                       CtdlLogPrintf(CTDL_ALERT, "RAW: %p\n", stack_frames[NThread]);
 } /* createGlobalBacktrace */
 
 /*!
index 8ec12f7e9268dd97ce5956ba5968b3b3db808d70..40e2516617c5122cb58a36fcaab345428eac70e7 100644 (file)
@@ -46,7 +46,7 @@ icaltimezone *get_default_icaltimezone(void) {
                 zone = icaltimezone_get_utc_timezone();
        }
        if (!zone) {
-               CtdlLogPrintf(1, "Unable to load UTC time zone!\n");
+               CtdlLogPrintf(CTDL_ALERT, "Unable to load UTC time zone!\n");
        }
         return zone;
 }
@@ -81,16 +81,16 @@ void ical_dezonify_backend(icalcomponent *cal,
 
                /* Convert it to an icaltimezone type. */
                if (tzid != NULL) {
-                       /* CtdlLogPrintf(9, "                * Stringy supplied timezone is: '%s'\n", tzid); */
+                       /* CtdlLogPrintf(CTDL_DEBUG, "                * Stringy supplied timezone is: '%s'\n", tzid); */
                        if ( (!strcasecmp(tzid, "UTC")) || (!strcasecmp(tzid, "GMT")) ) {
                                utc_declared_as_tzid = 1;
-                               /* CtdlLogPrintf(9, "                * ...and we handle that internally.\n"); */
+                               /* CtdlLogPrintf(CTDL_DEBUG, "                * ...and we handle that internally.\n"); */
                        }
                        else {
                                /* try attached first */
                                t = icalcomponent_get_timezone(cal, tzid);
 /*
-                               lprintf(9, "                * ...and I %s have tzdata for that zone.\n",
+                               lprintf(CTDL_DEBUG, "                * ...and I %s have tzdata for that zone.\n",
                                        (t ? "DO" : "DO NOT")
                                );
 */
@@ -99,7 +99,7 @@ void ical_dezonify_backend(icalcomponent *cal,
                                        t = icaltimezone_get_builtin_timezone(tzid);
 /*
                                        if (t) {
-                                               lprintf(9, "                * Using system tzdata!\n");
+                                               lprintf(CTDL_DEBUG, "                * Using system tzdata!\n");
                                        }
 */
                                }
@@ -126,24 +126,24 @@ void ical_dezonify_backend(icalcomponent *cal,
                return;
        }
 
-       /* CtdlLogPrintf(9, "                * Was: %s\n", icaltime_as_ical_string(TheTime)); */
+       /* CtdlLogPrintf(CTDL_DEBUG, "                * Was: %s\n", icaltime_as_ical_string(TheTime)); */
 
        if (TheTime.is_utc) {
-               /* CtdlLogPrintf(9, "                * This property is ALREADY UTC.\n"); */
+               /* CtdlLogPrintf(CTDL_DEBUG, "                * This property is ALREADY UTC.\n"); */
        }
 
        else if (utc_declared_as_tzid) {
-               /* CtdlLogPrintf(9, "                * Replacing '%s' TZID with 'Z' suffix.\n", tzid); */
+               /* CtdlLogPrintf(CTDL_DEBUG, "                * Replacing '%s' TZID with 'Z' suffix.\n", tzid); */
                TheTime.is_utc = 1;
        }
 
        else {
                /* Do the conversion. */
                if (t != NULL) {
-                       /* CtdlLogPrintf(9, "                * Timezone prop found.  Converting to UTC.\n"); */
+                       /* CtdlLogPrintf(CTDL_DEBUG, "                * Timezone prop found.  Converting to UTC.\n"); */
                }
                else {
-                       /* CtdlLogPrintf(9, "                * Converting default timezone to UTC.\n"); */
+                       /* CtdlLogPrintf(CTDL_DEBUG, "                * Converting default timezone to UTC.\n"); */
                }
 
                if (t == NULL) {
@@ -158,7 +158,7 @@ void ical_dezonify_backend(icalcomponent *cal,
        }
 
        icalproperty_remove_parameter_by_kind(prop, ICAL_TZID_PARAMETER);
-       /* CtdlLogPrintf(9, "                * Now: %s\n", icaltime_as_ical_string(TheTime)); */
+       /* CtdlLogPrintf(CTDL_DEBUG, "                * Now: %s\n", icaltime_as_ical_string(TheTime)); */
 
        /* Now add the converted property back in. */
        if (icalproperty_isa(prop) == ICAL_DTSTART_PROPERTY) {
@@ -224,7 +224,7 @@ void ical_dezonify_recurse(icalcomponent *cal, icalcomponent *rcal) {
 void ical_dezonify(icalcomponent *cal) {
        icalcomponent *vt = NULL;
 
-       /* CtdlLogPrintf(9, "ical_dezonify() started\n"); */
+       /* CtdlLogPrintf(CTDL_DEBUG, "ical_dezonify() started\n"); */
 
        /* Convert all times to UTC */
        ical_dezonify_recurse(cal, cal);
@@ -236,5 +236,5 @@ void ical_dezonify(icalcomponent *cal) {
                icalcomponent_free(vt);
        }
 
-       /* CtdlLogPrintf(9, "ical_dezonify() completed\n"); */
+       /* CtdlLogPrintf(CTDL_DEBUG, "ical_dezonify() completed\n"); */
 }
index 9c8ab860216f2c0cf214bfc626ac4c9612c95a49..88c63a8023c544a92240ac5182b1b09760fa3820 100644 (file)
@@ -2625,7 +2625,7 @@ int CtdlSaveMsgPointersInRoom(char *roomname, long newmsgidlist[], int num_newms
                }
        }
 
-       CtdlLogPrintf(9, "%d unique messages to be merged\n", num_msgs_to_be_merged);
+       CtdlLogPrintf(CTDL_DEBUG, "%d unique messages to be merged\n", num_msgs_to_be_merged);
 
        /*
         * Now merge the new messages
index e23772e9602c9f72086375e5e185b7ecec7b6de2..7bcae2b12e394cff537075d3be48ddf2246b84d9 100644 (file)
@@ -109,8 +109,8 @@ void LogPrintMessages(long err)
 
        snprintf(Message, n * SIZ, ErrGeneral, Short, Where, List, Hint, DetailList);
 
-       CtdlLogPrintf(0,Message);
-       CtdlLogPrintf(0,ErrSubject);
+       CtdlLogPrintf(CTDL_DEBUG,Message);
+       CtdlLogPrintf(CTDL_DEBUG,ErrSubject);
        quickie_message("Citadel", NULL, NULL, AIDEROOM, Message, FMT_FIXED, ErrSubject);
        if (errormessages!=NULL) free (errormessages);
        errormessages = NULL;
index 2737c0446d78111af898ba3506d897fdd851afdb..d635f96177eda76a3b36c922618e67489e851dc5 100644 (file)
@@ -517,7 +517,7 @@ int CtdlLoginExistingUser(char *authname, const char *trythisname)
        int found_user;
        long len;
 
-       CtdlLogPrintf(9, "CtdlLoginExistingUser(%s, %s)\n", authname, trythisname);
+       CtdlLogPrintf(CTDL_DEBUG, "CtdlLoginExistingUser(%s, %s)\n", authname, trythisname);
 
        if ((CC->logged_in)) {
                return login_already_logged_in;