Skip to content

Commit

Permalink
🔇 Reduce console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
cp2004 committed Nov 14, 2021
1 parent 73f400a commit dfb03e6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions octoprint_eeprom_marlin/static/js/eeprom_marlin.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ $(function () {

eeprom.linear = create_eeprom_observables(["K"]);

eeprom.material1 = create_eeprom_observables(["B", "F", "H"]);
eeprom.material1 = create_eeprom_observables(["B", "F", "H", "S"]);

eeprom.material2 = create_eeprom_observables(["B", "F", "H"]);
eeprom.material2 = create_eeprom_observables(["B", "F", "H", "S"]);

eeprom.max_acceleration = create_eeprom_observables(["E", "X", "Y", "Z"]);

Expand Down Expand Up @@ -187,7 +187,6 @@ $(function () {
})();

self.stats_from_json = function (data) {
console.log(data);
self.stats.prints(data.prints);
self.stats.finished(data.finished);
self.stats.failed(data.failed);
Expand Down

0 comments on commit dfb03e6

Please sign in to comment.