diff options
| author | Melody Horn <melody@boringcactus.com> | 2021-12-04 18:31:54 -0700 | 
|---|---|---|
| committer | Melody Horn <melody@boringcactus.com> | 2021-12-04 18:31:54 -0700 | 
| commit | fa6a1adc2e174839e6230adb27db0ddbea62e6de (patch) | |
| tree | 73f0a92287be382484b156b11cccdad8f7725982 /src | |
| parent | 9596730e52ccf5d385fa151d8bcc1eabe8ef90f3 (diff) | |
| download | queue-go-brrr-fa6a1adc2e174839e6230adb27db0ddbea62e6de.tar.gz queue-go-brrr-fa6a1adc2e174839e6230adb27db0ddbea62e6de.zip | |
apologize
Diffstat (limited to 'src')
| -rw-r--r-- | src/history.rs | 6 | 
1 files changed, 0 insertions, 6 deletions
| 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; |