Merge pull request #284 from Algebro7/log_successful_logins

Close #264. Username and IP address is logged on successful authentication
This commit is contained in:
Daniel García 2018-12-11 22:24:04 +01:00 committed by GitHub
commit f713e2e092
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,6 +129,7 @@ fn _password_login(data: ConnectData, conn: DbConn, ip: ClientIp) -> JsonResult
result["TwoFactorToken"] = Value::String(token);
}
info!("User {} logged in successfully. IP: {}", username, ip.ip);
Ok(Json(result))
}