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: [email protected] <[email protected]> Authored: Wed Feb 18 14:00:23 2015 -0500 Committer: Robert Kowalski <[email protected]> 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 ''; }
