Remove console.log

This commit is contained in:
Ian Renton
2025-10-23 15:47:35 +01:00
parent 2c8d18685c
commit bb7b6d6f3c

View File

@@ -126,7 +126,6 @@ function addAlertRowsToTable(tbody, alerts) {
// Get times for the alert, and convert to local time if necessary. // Get times for the alert, and convert to local time if necessary.
var start_time_utc = moment.unix(a["start_time"]).utc(); var start_time_utc = moment.unix(a["start_time"]).utc();
var start_time_local = start_time_utc.clone().local(); var start_time_local = start_time_utc.clone().local();
console.log(a["dx_calls"])
start_time = useLocalTime ? start_time_local : start_time_utc; start_time = useLocalTime ? start_time_local : start_time_utc;
var end_time_utc = moment.unix(a["end_time"]).utc(); var end_time_utc = moment.unix(a["end_time"]).utc();
var end_time_local = end_time_utc.clone().local(); var end_time_local = end_time_utc.clone().local();