summaryrefslogtreecommitdiffstats
path: root/bin/domain
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-11-08 15:52:03 +0100
committerMatthias Beyer <mail@beyermatthias.de>2018-11-09 21:48:26 +0100
commita2eae99a39ce7ecc0de7b91be5acadce6d38a4cc (patch)
tree56fa21646f67261d22b72303958f0c116a765dd1 /bin/domain
parent2cb46597f72cf1e733896f887dbe77dc6ff948e9 (diff)
Rewrite debug calls with DebugOption extension
Diffstat (limited to 'bin/domain')
-rw-r--r--bin/domain/imag-diary/src/create.rs13
1 files changed, 6 insertions, 7 deletions
diff --git a/bin/domain/imag-diary/src/create.rs b/bin/domain/imag-diary/src/create.rs
index 8a5789ad..2c18339a 100644
--- a/bin/domain/imag-diary/src/create.rs
+++ b/bin/domain/imag-diary/src/create.rs
@@ -30,6 +30,8 @@ use libimagentryedit::edit::Edit;
use libimagrt::runtime::Runtime;
use libimagerror::trace::MapErrTrace;
use libimagutil::warn_exit::warn_exit;
+use libimagutil::debug_result::DebugResult;
+use libimagutil::debug_option::DebugOption;
use libimagstore::store::FileLockEntry;
use libimagstore::store::Store;
@@ -85,10 +87,7 @@ fn create_entry<'a>(diary: &'a Store, diaryname: &str, rt: &Runtime) -> FileLock
debug!("Creating non-timed entry");
diary.new_entry_today(diaryname)
})
- .map(|e| {
- debug!("Created: {}", e.get_location());
- e
- })
+ .map_dbg(|e| format!("Created: {}", e.get_location()))
.map_err_trace_exit_unwrap(1)
}
@@ -120,7 +119,7 @@ fn create_id_from_clispec(create: &ArgMatches, timed_type: Timed) -> NaiveDateTi
Timed::Minutely => {
let min = create
.value_of("minute")
- .map(|m| { debug!("minute = {:?}", m); m })
+ .map_dbg(|m| format!("minute = {:?}", m))
.and_then(|s| {
FromStr::from_str(s)
.map_err(|_| warn!("Could not parse minute: '{}'", s))
@@ -140,7 +139,7 @@ fn create_id_from_clispec(create: &ArgMatches, timed_type: Timed) -> NaiveDateTi
Timed::Secondly => {
let min = create
.value_of("minute")
- .map(|m| { debug!("minute = {:?}", m); m })
+ .map_dbg(|m| format!("minute = {:?}", m))
.and_then(|s| {
FromStr::from_str(s)
.map_err(|_| warn!("Could not parse minute: '{}'", s))
@@ -150,7 +149,7 @@ fn create_id_from_clispec(create: &ArgMatches, timed_type: Timed) -> NaiveDateTi
let sec = create
.value_of("second")
- .map(|s| { debug!("second = {:?}", s); s })
+ .map_dbg(|s| format!("second = {:?}", s))
.and_then(|s| {
FromStr::from_str(s)
.map_err(|_| warn!("Could not parse second: '{}'", s))