aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html1
-rw-r--r--src/history.rs6
2 files changed, 1 insertions, 6 deletions
diff --git a/index.html b/index.html
index 7445435..4359092 100644
--- a/index.html
+++ b/index.html
@@ -32,6 +32,7 @@
<p>
Share your FFXIV window, and then this tool will try to calculate how much longer you probably have to wait.
(The actual calculation isn't very sophisticated, but it's better than nothing.)
+ (Also this is incredibly janky; if anything breaks or misbehaves try reloading the page.)
</p>
<h2><button id="bootbutton">Start!</button></h2>
<div class="output">
diff --git a/src/history.rs b/src/history.rs
index 48ee7db..5216d10 100644
--- a/src/history.rs
+++ b/src/history.rs
@@ -40,12 +40,6 @@ impl History {
if overall_queue_motion == 0 {
return None;
}
- gloo::console::log!(
- "time",
- overall_time_elapsed.to_string(),
- "motion",
- overall_queue_motion
- );
let duration_per_step = overall_time_elapsed / overall_queue_motion as i32;
let remaining_duration = duration_per_step * last_size as i32;
let completion_time = last_time + remaining_duration;