]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/cert.c
Move debug printfs to internal usage only.
[thirdparty/cups.git] / scheduler / cert.c
index 192ad8ad9db6c748acb2aa82a88c534b04b3ce8c..258e8fc83394e6eec96bdc192f3cc0c0f1893897 100644 (file)
@@ -244,9 +244,6 @@ cupsdAddCert(int        pid,                /* I - Process ID */
     fchown(fd, User, Group);
   }
 
-  DEBUG_printf(("ADD pid=%d, username=%s, cert=%s\n", pid, username,
-                cert->certificate));
-
   write(fd, cert->certificate, strlen(cert->certificate));
   close(fd);
 
@@ -280,9 +277,6 @@ cupsdDeleteCert(int pid)            /* I - Process ID */
 
       cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdDeleteCert: Removing certificate for PID %d.", pid);
 
-      DEBUG_printf(("DELETE pid=%d, username=%s, cert=%s\n", cert->pid,
-                    cert->username, cert->certificate));
-
       if (prev == NULL)
         Certs = cert->next;
       else