Time Debugging via Print
This commit is contained in:
parent
0159724a7c
commit
767f9652dd
1 changed files with 5 additions and 1 deletions
|
@ -192,6 +192,8 @@ fn run_bot() {
|
|||
|
||||
// Enter a loop (not for debugging)
|
||||
loop {
|
||||
println!("Start Time: {}", this.start_time.time());
|
||||
println!("Previous Time: {}", old);
|
||||
this.idle();
|
||||
// 3 retries in case of connection issues
|
||||
let mut loop_breaker: u8 = 0;
|
||||
|
@ -204,6 +206,8 @@ fn run_bot() {
|
|||
loop_breaker += 1;
|
||||
};
|
||||
this.print_info();
|
||||
println!("Start Time: {}", this.start_time.time());
|
||||
println!("Previous Time: {}", old);
|
||||
this.idle();
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue