Skip to content

Commit

Permalink
Removed unneeded console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewpblog committed Apr 19, 2012
1 parent 96011db commit b0c7abb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/database.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ function openDB(callback, context) {
req.onsuccess = function(e) {
var db = e.target.result;

console.log('Version: ' + db.version + ', DB_VERSION: ' + DB_VERSION);
if(db.setVersion && db.version != DB_VERSION) {
var verReq = db.setVersion(DB_VERSION);
verReq.onfailure = req.onerror;
Expand Down

0 comments on commit b0c7abb

Please sign in to comment.