Skip to content

Commit

Permalink
fix(log): moved version cleanup message to debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Aug 17, 2016
1 parent 96063f5 commit 5e127b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function cleanVersion(version, name) {
return;
}
if (!version) {
console.error('could not clean version ' + originalVersion + ' for ' + name);
log('could not clean version ' + originalVersion + ' for ' + name);
return;
}
console.assert(version, 'missing clean version ' + originalVersion + ' for ' + name);
Expand Down

0 comments on commit 5e127b2

Please sign in to comment.