Skip to content

Commit

Permalink
Logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ziebelje committed May 23, 2024
1 parent ecbb5b9 commit 8771388
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions js/component/card/temperature_profiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ beestat.component.card.temperature_profiles.prototype.get_data_ = function() {

var y_min = Infinity;
var y_max = -Infinity;
console.log('a');
console.log(thermostat);
console.log(thermostat.profile);
thermostat.profile = null;
for (var type in thermostat.profile.temperature) {
// Cloned because I mutate this data for temperature conversions.
var profile = beestat.clone(
Expand Down Expand Up @@ -327,6 +331,11 @@ beestat.component.card.temperature_profiles.prototype.get_profile_extremes_ = fu
}
};


console.log('b');
console.log(thermostat);
console.log(thermostat.profile);

for (let type in thermostat.profile.temperature) {
const profile = thermostat.profile.temperature[type];

Expand Down

0 comments on commit 8771388

Please sign in to comment.