From 6e9306afd2bedec0cb9f4a12c23ff4cb072653b8 Mon Sep 17 00:00:00 2001
From: Julian Viereck <julian.viereck@gmail.com>
Date: Fri, 9 Sep 2011 16:29:50 -0700
Subject: [PATCH] Remove console.logs from previous commit again

---
 fonts.js  | 2 --
 pdf.js    | 1 -
 worker.js | 4 ----
 3 files changed, 7 deletions(-)

diff --git a/fonts.js b/fonts.js
index e8ab0c56d..fd467eeca 100755
--- a/fonts.js
+++ b/fonts.js
@@ -165,8 +165,6 @@ var FontLoader = {
   waitingStr:  [],
 
   bind: function(fonts, callback) {
-    console.log("requesting fonts", fonts[0].properties.loadedName, fonts[0].name);
-    
     var rules = [], names = [];
 
     for (var i = 0; i < fonts.length; i++) {
diff --git a/pdf.js b/pdf.js
index c8068dd3b..e7c3d6efa 100644
--- a/pdf.js
+++ b/pdf.js
@@ -4893,7 +4893,6 @@ var CanvasGraphics = (function() {
               // If the promise isn't resolved yet, add the continueCallback
               // to the promise and bail out.
               if (!promise.isResolved) {
-                console.log("depending on obj", depObjId);
                 promise.then(continueCallback);
                 return i;
               }
diff --git a/worker.js b/worker.js
index 440b94817..78e88835c 100644
--- a/worker.js
+++ b/worker.js
@@ -93,8 +93,6 @@ var Promise = (function() {
   
   Promise.prototype = {
     resolve: function(data) {
-      console.log("resolve", this.name);
-      
       if (this.isResolved) {
         throw "A Promise can be resolved only once";
       }
@@ -166,8 +164,6 @@ var WorkerPDFDoc = (function() {
           var file = data[3];
           var properties = data[4];
 
-          console.log("got new font", name);
-
           var font = {
             name: name,
             file: file,