Remove access token from Vector logs.

This commit is contained in:
giomfo
2016-02-11 11:29:33 +01:00
parent 6ef7b75011
commit a0d0070cd6
10 changed files with 56 additions and 46 deletions
@@ -735,7 +735,7 @@
[self removePendingActionMask];
NSLog(@"[RoomParticipantsVC] Invite be email %@ failed: %@", participantId, error);
NSLog(@"[RoomParticipantsVC] Invite be email %@ failed", participantId);
// Alert user
[[AppDelegate theDelegate] showErrorAsAlert:error];
}];
@@ -754,7 +754,7 @@
[self removePendingActionMask];
NSLog(@"[RoomParticipantsVC] Invite %@ failed: %@", participantId, error);
NSLog(@"[RoomParticipantsVC] Invite %@ failed", participantId);
// Alert user
[[AppDelegate theDelegate] showErrorAsAlert:error];
}];
@@ -789,7 +789,7 @@
[self removePendingActionMask];
NSLog(@"[RoomParticipantsVC] Invite %@ failed: %@", participantId, error);
NSLog(@"[RoomParticipantsVC] Invite %@ failed", participantId);
// Alert user
[[AppDelegate theDelegate] showErrorAsAlert:error];
}];
@@ -887,7 +887,7 @@
} failure:^(NSError *error) {
[strongSelf removePendingActionMask];
NSLog(@"[RoomParticipantsVC] Leave room %@ failed: %@", strongSelf.mxRoom.state.roomId, error);
NSLog(@"[RoomParticipantsVC] Leave room %@ failed", strongSelf.mxRoom.state.roomId);
// Alert user
[[AppDelegate theDelegate] showErrorAsAlert:error];
@@ -947,7 +947,7 @@
} failure:^(NSError *error) {
[strongSelf removePendingActionMask];
NSLog(@"[RoomParticipantsVC] Kick %@ failed: %@", memberUserId, error);
NSLog(@"[RoomParticipantsVC] Kick %@ failed", memberUserId);
// Alert user
[[AppDelegate theDelegate] showErrorAsAlert:error];