diff options
author | Richard van der Hoff <richard@matrix.org> | 2015-10-22 17:08:58 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2015-10-22 17:17:04 +0100 |
commit | caff31061b68f3b26a889931503a61bf12b76329 (patch) | |
tree | e2068ca47d776c5c5760394a1807fcb7fb44dcb3 /matrix-api.c | |
parent | e8c4ddde265c060eb1466f39d3feb09694dd3482 (diff) | |
download | purple-matrix-caff31061b68f3b26a889931503a61bf12b76329.tar.gz |
Refactor the connection code
Move all matrix-login and bits of matrix-sync into matrix-connection, where
it seems to make more sense.
Also move MatrixConnectionData into matrix-connection.h
Diffstat (limited to 'matrix-api.c')
-rw-r--r-- | matrix-api.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/matrix-api.c b/matrix-api.c index 92ae55b..a9c5227 100644 --- a/matrix-api.c +++ b/matrix-api.c @@ -450,6 +450,8 @@ MatrixApiRequestData *matrix_api_password_login(MatrixConnectionData *conn, if(purple_debug_is_unsafe()) purple_debug_info("matrixprpl", "request %s\n", request->str); + else + purple_debug_info("matrixprpl", "logging in %s\n", username); fetch_data = matrix_api_start(url, request->str, conn, callback, NULL, NULL, user_data, 0); |