]> source.dussan.org Git - tigervnc.git/commitdiff
Replaced printf(...) and fprintf(stderr, ...) with proper logging.
authorConstantin Kaplinsky <const@tightvnc.com>
Wed, 10 Oct 2007 02:03:33 +0000 (02:03 +0000)
committerConstantin Kaplinsky <const@tightvnc.com>
Wed, 10 Oct 2007 02:03:33 +0000 (02:03 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2356 3789f03b-4d11-0410-bbf8-ca57d06f2519

common/rfb/IrixDMIC_RawToJpeg.cxx

index b3378a782c1157bd511b134e1dfef5c82cee6f5d..9e2de54263dda7dee09f4c543d7bfbf52b091181 100644 (file)
@@ -4,9 +4,12 @@
 #include <sys/poll.h>
 
 #include <rfb/IrixDMIC_RawToJpeg.h>
+#include <rfb/LogWriter.h>
 
 using namespace rfb;
 
+static LogWriter vlog("IrixDMIC_RawToJpeg");
+
 //
 // Constructor. Find a converter and create a context. Also, create
 // DMparams structures for using with dmICSetSrcParams,
@@ -46,7 +49,7 @@ IrixDMIC_RawToJpeg::IrixDMIC_RawToJpeg(bool needRealtime)
 
       // FIXME: Just save the engine name and make x0vncserver print it.
       const char *engine = dmParamsGetString(p, DM_IC_ENGINE);
-      printf("Found JPEG encoder: \"%s\" (%d)\n", engine, n);
+      vlog.info("Found JPEG encoder: \"%s\" (%d)", engine, n);
 
       dmParamsDestroy(p);
       break;
@@ -55,7 +58,7 @@ IrixDMIC_RawToJpeg::IrixDMIC_RawToJpeg(bool needRealtime)
   }
   if (n < 0) {
     // FIXME: Unify error handling.
-    fprintf (stderr, "Error: No matching JPEG encoder found\n");
+    vlog.error("Error: No matching JPEG encoder found");
     return;
   }
   if (dmICCreate(n, &m_ic) != DM_SUCCESS) {
@@ -433,8 +436,8 @@ IrixDMIC_RawToJpeg::reportError(const char *funcName)
 {
   char errorDetail[DM_MAX_ERROR_DETAIL];
   const char *errorCategory = dmGetError(NULL, errorDetail);
-  fprintf(stderr, "%s() failed: %s: %s\n",
-         funcName, errorCategory, errorDetail);
+  vlog.error("%s() failed: %s: %s",
+             funcName, errorCategory, errorDetail);
 }
 
 //
@@ -444,6 +447,6 @@ IrixDMIC_RawToJpeg::reportError(const char *funcName)
 void
 IrixDMIC_RawToJpeg::reportErrorNotInited()
 {
-  fprintf(stderr, "Internal error: Image converter not initialized\n");
+  vlog.error("Internal error: Image converter not initialized");
 }