Add logging output

This commit is contained in:
Matthias Beyer 2018-04-14 16:40:07 +02:00
parent 918d7a76b6
commit 5e51a77b3f
2 changed files with 2 additions and 0 deletions
lib/domain/libimagwiki

View file

@ -20,6 +20,7 @@ is-it-maintained-open-issues = { repository = "matthiasbeyer/imag" }
maintenance = { status = "actively-developed" }
[dependencies]
log = "0.4"
error-chain = "0.11"
toml = "0.4"
toml-query = "0.6"

View file

@ -38,6 +38,7 @@
extern crate filters;
extern crate toml;
extern crate toml_query;
#[macro_use] extern crate log;
#[macro_use] extern crate error_chain;
#[macro_use] extern crate libimagstore;