Add proper logging
This commit is contained in:
parent
2fecbedfa1
commit
c25dfb253a
4 changed files with 25 additions and 11 deletions
|
@ -1,3 +1,6 @@
|
|||
use env_logger::{Builder, Env};
|
||||
|
||||
fn main() {
|
||||
Builder::from_env(Env::default().default_filter_or("debug")).init();
|
||||
opensmtpd::run();
|
||||
}
|
||||
|
|
Reference in a new issue