Skip to content

Commit

Permalink
Merge pull request #1256 from erenoku/print_timestamp
Browse files Browse the repository at this point in the history
Print timestamp with each status update
  • Loading branch information
hannobraun authored Oct 23, 2022
2 parents 74e1b4f + 718d217 commit f0a60d3
Show file tree
Hide file tree
Showing 3 changed files with 7 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
6 changes: 5 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,9 @@ 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 f0a60d3

Please sign in to comment.