Skip to content

Commit

Permalink
Merge pull request #134 from sachaos/remove-unnecessary-debug-log
Browse files Browse the repository at this point in the history
Remove unnecessary debug message
  • Loading branch information
sachaos authored Aug 21, 2024
2 parents d28809c + 696416a commit 824340e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,6 @@ impl<S: Store> App<S> {
action_tx.send(Action::SetClock(record.start_time))?;
let mut result = termtext::Converter::new(style)
.convert(&normalize_stdout(&record.stdout));
log::debug!("result: {:?}", result);
if record.stdout.is_empty() {
result = termtext::Converter::new(style)
.convert(&normalize_stdout(&record.stderr));
Expand Down Expand Up @@ -401,7 +400,6 @@ impl<S: Store> App<S> {
Action::SetTimemachineMode(timemachine_mode) => {
self.timemachine_mode = timemachine_mode;
if let Some(latest_id) = self.store.get_latest_id()? {
log::debug!("Latest ID: {latest_id}");
action_tx.send(Action::ShowExecution(latest_id, latest_id))?;
}
}
Expand Down Expand Up @@ -510,7 +508,7 @@ impl<S: Store> App<S> {
tui.exit()?;

if !executor_handle.is_finished() {
log::debug!("Waiting for executor to finish");
log::info!("Waiting for executor to finish");
executor_handle.abort();
return Ok(());
}
Expand Down

0 comments on commit 824340e

Please sign in to comment.