You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2015/02/27 11:15:07 UTC

fauxton commit: updated refs/heads/master to 73baced

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master b29ad53cf -> 73bacedae


Change debugging from console.log to console.error

These were left in with commit 92834eae02eadc361de3a21ee1079d8f47af6492 (Centralize URLs)


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/73baceda
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/73baceda
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/73baceda

Branch: refs/heads/master
Commit: 73bacedae20d6eaeefa0607364c79c94ad862844
Parents: b29ad53
Author: michellephung@gmail.com <mi...@gmail.com>
Authored: Wed Feb 18 14:00:23 2015 -0500
Committer: Robert Kowalski <ro...@apache.org>
Committed: Fri Feb 27 11:14:18 2015 +0100

----------------------------------------------------------------------
 app/core/api.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/73baceda/app/core/api.js
----------------------------------------------------------------------
diff --git a/app/core/api.js b/app/core/api.js
index 019490b..f1ca478 100644
--- a/app/core/api.js
+++ b/app/core/api.js
@@ -80,16 +80,16 @@ function(FauxtonAPI, Layout, Router, RouteObject, utils, Store, constants, Flux)
       }
       return false;
     });
-    
+
     if (!_.isUndefined(url)) { return url; }
 
     if (!urlPaths[name]) {
-      console.log('could not find name ', name);
+      console.error('could not find name ', name);
       return '';
     }
 
     if (!urlPaths[name][context]) {
-      console.log('could not find context ', context);
+      console.error('could not find context ', context);
       return '';
     }