Remove some extra debug prints

This commit is contained in:
Miroslav Prasil
2018-07-01 14:48:18 +01:00
parent ea600ab2b8
commit 9f8183deb0
3 changed files with 0 additions and 8 deletions

View File

@@ -19,7 +19,6 @@ pub fn routes() -> Vec<Route> {
#[post("/connect/token", data = "<connect_data>")]
fn login(connect_data: Form<ConnectData>, device_type: DeviceType, conn: DbConn) -> JsonResult {
let data = connect_data.get();
println!("{:#?}", data);
match data.grant_type {
GrantType::RefreshToken =>_refresh_login(data, device_type, conn),