Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
numeral.js: console.warn instead of console.error (#2154)
Browse files Browse the repository at this point in the history
  • Loading branch information
luclu authored and frozeman committed May 9, 2017
1 parent 7503362 commit 1af03ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/client/appStart.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Meteor.startup(function () {
try {
numeral.language(lang);
} catch (err) {
console.error(`numeral.js couldn't set number formating: ${err.message}`);
console.warn(`numeral.js couldn't set number formating: ${err.message}`);
}
EthTools.setLocale(lang);
}
Expand Down

0 comments on commit 1af03ce

Please sign in to comment.