Add debug output

This commit is contained in:
Valentin Brandl 2019-07-28 15:27:23 +02:00
parent c7d8784c78
commit 78d4be8558
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -109,6 +109,10 @@ fn main() -> Result<()> {
pretty_env_logger::init();
openssl_probe::init_ssl_cert_env_vars();
eprintln!("CF_ZONE_IDENT {}", statics::CF_ZONE_IDENT.as_str());
eprintln!("CF_AUTH_USER {}", statics::CF_AUTH_USER.as_str());
eprintln!("CF_AUTH_KEY {}", statics::CF_AUTH_KEY.as_str());
Ok(HttpServer::new(move || {
App::new()
.data(Client::new())