diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-27 00:41:32 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-27 00:41:32 +0200 |
commit | 34fe3999c793fe80f9bec66efeb4e30fc7dba45e (patch) | |
tree | f159d3814967b37e2063e97ce1807cd9393f6766 | |
parent | fc097a88a5ef15645cd4eccf71df056f6236952f (diff) | |
download | Aurora-data-34fe3999c793fe80f9bec66efeb4e30fc7dba45e.tar.gz Aurora-data-34fe3999c793fe80f9bec66efeb4e30fc7dba45e.zip |
Remove logging
-rw-r--r-- | src/stores.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stores.ts b/src/stores.ts index d6e5cbc..459473d 100644 --- a/src/stores.ts +++ b/src/stores.ts @@ -104,7 +104,6 @@ async function updateEarthWeather(location=null) { "now": current_weather, "available": true })); - console.log(yr_data); setUpdated(earth_weather, false); } @@ -174,7 +173,6 @@ async function getSpaceWeather() { ret.now.kp_min = minkp.toString(); ret.now.kp_max = maxkp.toString(); - console.log(ret.usnoaa_data_raw); return ret; } |