diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-08-28 15:52:30 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-08-28 15:52:30 +0200 |
commit | 7561a928912b62e0fea384840ebaec1d3c4d291c (patch) | |
tree | dc94b93c1a935aa32aa9ecbb3007f69e7acbfd5c | |
parent | a9a94161495718a2eb7bca8169671ecd0db72c9f (diff) | |
download | evtclib-7561a928912b62e0fea384840ebaec1d3c4d291c.tar.gz evtclib-7561a928912b62e0fea384840ebaec1d3c4d291c.tar.bz2 evtclib-7561a928912b62e0fea384840ebaec1d3c4d291c.zip |
remove leftover debug output
Since downstream applications will also print this, we should remove it.
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | src/analyzers/raids/w4.rs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 748f5a4..6f5a2fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. ## Unreleased +### Fixed +- Removed leftover debug output ("First aware: ...") from the Deimos analyzer. ## 0.4.1 - 2020-08-17 ### Added diff --git a/src/analyzers/raids/w4.rs b/src/analyzers/raids/w4.rs index 310b26f..adeb2ea 100644 --- a/src/analyzers/raids/w4.rs +++ b/src/analyzers/raids/w4.rs @@ -199,7 +199,6 @@ fn deimos_10_time(log: &Log) -> u64 { if let EventKind::Targetable { targetable, .. } = event.kind() { if *targetable { first_aware = event.time(); - println!("First aware: {}", first_aware); } } } |