Skip to content

Commit

Permalink
Print timestamp with each status update
Browse files Browse the repository at this point in the history
  • Loading branch information
erenoku committed Oct 23, 2022
1 parent 74e1b4f commit cfbf00d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/fj-interop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
chrono = "0.4.22"
fj-math.workspace = true
5 changes: 4 additions & 1 deletion crates/fj-interop/src/status_report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
use std::collections::VecDeque;

use chrono::Local;

/// Struct to store and update status messages
#[derive(Default)]
pub struct StatusReport {
Expand All @@ -16,7 +18,8 @@ impl StatusReport {

/// Update the status
pub fn update_status(&mut self, status: &str) {
let status = format!("\n{}", status.to_owned());
let date = Local::now();
let status = format!("\n{} {}", date.format("[%H:%M:%S]"), status.to_owned());
self.status.push_back(status);
if self.status.len() > 5 {
for _ in 0..(self.status.len() - 5) {
Expand Down

0 comments on commit cfbf00d

Please sign in to comment.