Integrate env_logger.

This commit is contained in:
Nolan Darilek 2020-06-11 13:12:49 -05:00
parent a4c61a421f
commit 85492b52dc
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ edition = "2018"
crate-type = ["cdylib"]
[dependencies]
env_logger = "0.7"
gdnative = "0.8"
tts = "0.3"

View File

@ -148,6 +148,7 @@ impl TTS {
}
fn init(handle: gdnative::init::InitHandle) {
env_logger::init();
handle.add_class::<TTS>();
}