Skip to content

Commit 8fb646f

Browse files
author
Dmytro Trotsko
committed
Removed print/console.log statements
1 parent 90e774f commit 8fb646f

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

src/assets/js/indicatorSetsTable.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,13 @@ var table = new DataTable("#indicatorSetsTable", {
113113
url: "get_table_stats_info/" + window.location.search,
114114
method: "GET",
115115
success: function (response) {
116-
console.log(response)
117116
if (response.num_of_locations > 0) {
118117
indicatorSetsInfo.innerHTML =
119118
`Showing <b>${response.num_of_indicators}</b> distinct ${pluralize(response.num_of_indicators, "indicator")} (arranged in <b>${response.num_of_indicator_sets}</b> ${pluralize(response.num_of_indicator_sets, "set")}), including <b>${numberWithCommas(response.num_of_locations)}</b> Delphi-hosted time series across numerous locations.`;
120119
} else {
121120
indicatorSetsInfo.innerHTML =
122121
`Showing <b>${response.num_of_indicators}</b> indicator sets (arranged in <b>${response.num_of_indicator_sets}</b> ${pluralize(response.num_of_indicator_sets, "set")}).`;
123122
}
124-
console.log(response);
125123
}
126124
});
127125
return indicatorSetsInfo;

src/assets/js/selectedIndicatorsModal.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ async function checkFluviewGeoCoverage(geoValue) {
210210
checkedIndicator["notCoveredGeos"] = [geoValue];
211211
}
212212
}
213-
console.log(checkedIndicatorMembers);
214213
return result["not_covered_indicators"];
215214
} catch (error) {
216215
console.error("Error fetching fluview geo coverage:", error);

src/indicatorsets/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,5 +831,4 @@ def get_num_locations_from_meta(indicators):
831831
for r in metadata:
832832
if (r["data_source"], r["signal"]) in indicators:
833833
timeseries_count += r["num_locations"]
834-
print(timeseries_count)
835834
return timeseries_count

0 commit comments

Comments
 (0)